Skip to content

Commit 2e4f5b2

Browse files
authored
Merge pull request #14 from mdevlamynck/feature/fix-translation
Fix translation generation
2 parents ea9d6ea + 54bede3 commit 2e4f5b2

File tree

13 files changed

+5759
-913
lines changed

13 files changed

+5759
-913
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ jobs:
1111
- stage: test
1212
name: "Elm tests"
1313
script:
14-
- npm install
14+
- npm ci
1515
- npm run ci-format
1616
- npm run ci-test
1717

1818
- stage: test
1919
name: "Webpack tests"
2020
script:
2121
- cd webpack
22-
- npm install
22+
- npm ci
2323
- npm run build
2424

2525
- stage: test
2626
name: "Parcel tests"
2727
script:
2828
- cd parcel
29-
- npm install
29+
- npm ci
3030
- npm run build

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 1.1.3
4+
5+
Bug fixes:
6+
* Fix generation of translations with a domain that contains characters not allowed to appear in an elm module name
7+
38
## 1.1.2
49

510
Bug fixes:

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ This project uses the following tools for development:
9494
You'll find the following commands useful when hacking on this project:
9595

9696
```bash
97-
# build the package
98-
npm run build
99-
10097
# run the tests and doc tests
10198
npm run test
10299

package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elm-symfony-bridge",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"author": "Matthias Devlamynck <[email protected]>",
55
"license": "MIT",
66
"homepage": "https://github.com/mdevlamynck/elm-symfony-bridge#readme",

0 commit comments

Comments
 (0)