Current section
14 Versions
Jump to
Current section
14 Versions
Compare versions
4
files changed
+6
additions
-10
deletions
| @@ -1,9 +1,9 @@ | |
| 1 1 | {<<"links">>, |
| 2 2 | [{<<"Source">>,<<"https://github.com/combo-lab/combo">>}, |
| 3 3 | {<<"Changelog">>, |
| 4 | - <<"https://github.com/combo-lab/combo/blob/v0.5.0/CHANGELOG.md">>}]}. |
| 4 | + <<"https://github.com/combo-lab/combo/blob/v0.5.1/CHANGELOG.md">>}]}. |
| 5 5 | {<<"name">>,<<"combo">>}. |
| 6 | - {<<"version">>,<<"0.5.0">>}. |
| 6 | + {<<"version">>,<<"0.5.1">>}. |
| 7 7 | {<<"description">>, |
| 8 8 | <<"A web framework, that combines the good parts of modern web development.">>}. |
| 9 9 | {<<"elixir">>,<<"~> 1.18">>}. |
| @@ -59,7 +59,7 @@ defmodule Combo.Template.CEExEngine.Formatter do | |
| 59 59 | # If the opening delimiter is a single character, such as ~CE"...", or the formatted code is empty, |
| 60 60 | # do not add trailing newline. |
| 61 61 | newline = |
| 62 | - if match?(<<_>>, opts[:opening_delimiter]) or formatted == [], |
| 62 | + if match?(<<_>>, opts[:opening_delimiter]) or formatted == [] or formatted == "", |
| 63 63 | do: [], |
| 64 64 | else: ?\n |
| @@ -1,7 +1,7 @@ | |
| 1 1 | defmodule Combo.MixProject do |
| 2 2 | use Mix.Project |
| 3 3 | |
| 4 | - @version "0.5.0" |
| 4 | + @version "0.5.1" |
| 5 5 | @description "A web framework, that combines the good parts of modern web development." |
| 6 6 | @elixir_requirement "~> 1.18" |
| 7 7 | @source_url "https://github.com/combo-lab/combo" |
| @@ -1,6 +1,6 @@ | |
| 1 1 | { |
| 2 2 | "name": "combo", |
| 3 | - "version": "0.5.0", |
| 3 | + "version": "0.5.1", |
| 4 4 | "description": "The JavaScript parts of Combo", |
| 5 5 | "type": "module", |
| 6 6 | "scripts": { |
| @@ -22,11 +22,7 @@ | |
| 22 22 | "require": "./dist/html.cjs.js" |
| 23 23 | } |
| 24 24 | }, |
| 25 | - "files": [ |
| 26 | - "package.json", |
| 27 | - "dist/*", |
| 28 | - "LICENSE.md" |
| 29 | - ], |
| 25 | + "files": ["package.json", "dist/*", "LICENSE.md"], |
| 30 26 | "devDependencies": { |
| 31 27 | "@babel/core": "7.28.0", |
| 32 28 | "@babel/preset-env": "7.28.0", |