Skip to content

Commit 3093214

Browse files
authored
Merge branch 'master' into feat/update-more-deps
2 parents 86634e4 + 1a4e2ef commit 3093214

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
}
1818
},
1919
"dependencies": {
20-
"@babel/cli": "7.12.1",
21-
"@babel/core": "7.12.3",
22-
"@babel/plugin-transform-runtime": "7.12.1",
23-
"@babel/preset-env": "7.12.1",
24-
"@babel/runtime": "7.12.1",
20+
"@babel/cli": "7.12.10",
21+
"@babel/core": "7.12.10",
22+
"@babel/plugin-transform-runtime": "7.12.10",
23+
"@babel/preset-env": "7.12.10",
24+
"@babel/runtime": "7.12.5",
2525
"assets-webpack-plugin": "3.9.12",
26-
"autoprefixer": "10.0.1",
27-
"babel-loader": "8.1.0",
26+
"autoprefixer": "10.1.0",
27+
"babel-loader": "8.2.2",
2828
"babel-runtime": "6.26.0",
2929
"case-sensitive-paths-webpack-plugin": "2.3.0",
3030
"chalk": "4.1.0",
31-
"cli-table": "0.3.1",
31+
"cli-table": "0.3.4",
3232
"connect-history-api-fallback": "1.6.0",
3333
"copy-webpack-plugin": "6.2.0",
3434
"cosmiconfig": "7.0.0",
@@ -40,7 +40,7 @@
4040
"elm-hot-webpack-loader": "1.1.7",
4141
"elm-test": "latest-0.19.1",
4242
"elm-webpack-loader": "7.0.1",
43-
"file-loader": "6.1.0",
43+
"file-loader": "6.2.0",
4444
"fs-extra": "9.0.1",
4545
"html-webpack-plugin": "4.5.0",
4646
"http-proxy-middleware": "1.0.5",
@@ -49,7 +49,7 @@
4949
"object-assign": "4.1.1",
5050
"optimize-css-assets-webpack-plugin": "5.0.4",
5151
"postcss-flexbugs-fixes": "4.2.1",
52-
"postcss-loader": "4.0.4",
52+
"postcss-loader": "4.1.0",
5353
"postcss-safe-parser": "5.0.2",
5454
"promise": "8.1.0",
5555
"prompt": "1.0.0",
@@ -64,28 +64,28 @@
6464
"webpack": "4.44.2",
6565
"webpack-dev-server": "3.11.0",
6666
"webpack-manifest-plugin": "2.2.0",
67-
"whatwg-fetch": "3.4.1",
67+
"whatwg-fetch": "3.5.0",
6868
"workbox-webpack-plugin": "5.1.4"
6969
},
7070
"devDependencies": {
7171
"@commitlint/cli": "11.0.0",
7272
"@commitlint/config-conventional": "11.0.0",
7373
"babel-eslint": "10.1.0",
7474
"commitizen": "4.2.2",
75-
"cross-env": "7.0.2",
75+
"cross-env": "7.0.3",
7676
"cz-conventional-changelog": "3.3.0",
77-
"dir-compare": "2.3.0",
78-
"eslint": "7.12.0",
79-
"eslint-plugin-prettier": "3.1.4",
80-
"husky": "4.3.0",
81-
"lint-staged": "10.5.0",
82-
"mocha": "8.2.0",
77+
"dir-compare": "2.4.0",
78+
"eslint": "7.15.0",
79+
"eslint-plugin-prettier": "3.2.0",
80+
"husky": "4.3.5",
81+
"lint-staged": "10.5.3",
82+
"mocha": "8.2.1",
8383
"nightmare": "3.0.2",
84-
"prettier": "2.1.2",
84+
"prettier": "2.2.1",
8585
"rimraf": "3.0.2",
86-
"semantic-release": "17.2.1",
86+
"semantic-release": "17.3.0",
8787
"shelljs": "0.8.3",
88-
"unexpected": "11.15.0"
88+
"unexpected": "12.0.0"
8989
},
9090
"engines": {
9191
"node": ">=8.0.0"

template/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ Do you remember `logger` in JavaScript? Let's declare the port:
240240
port logger : String -> Cmd msg
241241
```
242242

243-
and use it to call JavaScript in you update function.
243+
and use it to call JavaScript in your update function.
244244

245245
```elm
246246
update : Msg -> Model -> ( Model, Cmd Msg )
@@ -582,7 +582,7 @@ const logo = `<img src=${process.env.PUBLIC_URL + '/img/logo.svg'} />`;
582582
Keep in mind the downsides of this approach:
583583

584584
* None of the files in `public` folder get post-processed or minified.
585-
* Missing files will not be called at compilation time, and will cause 404 errors for your users.
585+
* Missing files will not be caught at compilation time, and will cause 404 errors for your users.
586586
* Result filenames won’t include content hashes so you’ll need to add query arguments or rename them every time they change.
587587

588588
### When to Use the `public` Folder

0 commit comments

Comments
 (0)