Skip to content

Commit

Permalink
Merge pull request #1188 from kethinov/0.21.3
Browse files Browse the repository at this point in the history
0.21.3
  • Loading branch information
kethinov authored Aug 10, 2022
2 parents b9443a8 + 8954258 commit ae58903
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

- Put your changes here...

## 0.21.3

- When `versionedPublic` is true, Roosevelt will no longer deposit static HTML pages into the versioned directory.
- Various dependencies updated.

## 0.21.2

- Fixed bug where the config auditor would complain about the `makeBuildArtifacts` param being set to string.
Expand Down
2 changes: 1 addition & 1 deletion lib/sourceParams.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ module.exports = (params, app, appSchema) => {
params.unversionedPublic = path.join(appDir, params.publicFolder)
params.publicFolder = path.join(params.unversionedPublic, params.versionedPublic ? pkg.version || '' : '')
params.html.sourcePath = path.join(params.staticsRoot, params.html.sourcePath)
params.html.output = path.join(params.publicFolder, params.html.output)
params.html.output = path.join(params.unversionedPublic, params.html.output)
params.css.sourcePath = path.join(params.staticsRoot, params.css.sourcePath)
params.css.output = path.join(params.publicFolder, params.css.output)
params.js.sourcePath = path.join(params.staticsRoot, params.js.sourcePath)
Expand Down
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"url": "https://github.com/rooseveltframework/roosevelt/graphs/contributors"
}
],
"version": "0.21.2",
"version": "0.21.3",
"files": [
"defaultErrorPages",
"lib",
Expand Down

0 comments on commit ae58903

Please sign in to comment.