Skip to content

Commit

Permalink
0.19.6 (#391)
Browse files Browse the repository at this point in the history
* 0.19.6

- Added some additional Webpack config defaults to make it easier to bundle third party dependencies without needing to add additional Webpack configs manually.
- Various dependencies bumped.

* etc
  • Loading branch information
kethinov authored May 30, 2021
1 parent 978b6d3 commit 0f501a1
Show file tree
Hide file tree
Showing 6 changed files with 1,405 additions and 1,163 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 15.x]
node-version: [14.x, 16.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- Put your changes here...

## 0.19.6

- Added some additional Webpack config defaults to make it easier to bundle third party dependencies without needing to add additional Webpack configs manually.
- Dropped Node 15 support. Added Node 16 support.
- Various dependencies bumped.

## 0.19.5

- Fixed bug that caused custom app names not to propagate correctly into the generated app if the the app was generated using the `mkroosevelt` command.
Expand Down
6 changes: 6 additions & 0 deletions generators/app/templates/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,14 @@
"path": "${publicFolder}/js"
},
"resolve": {
"alias": {
"fs": false,
"path": false
},
"modules": [
"${js.sourcePath}",
"${publicFolder}/js",
"${appDir}",
"node_modules"
]
}
Expand Down
Loading

0 comments on commit 0f501a1

Please sign in to comment.