Skip to content

0.19.5 #382

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@

- Put your changes here...

## 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.
- Removed husky and lint-staged from the default deps in generated apps.
- Suppressed unnecessary logs in tests.
- Various dependencies bumped.

## 0.19.4

- Removed deprecated code from generator.
Expand Down
15 changes: 2 additions & 13 deletions generators/app/templates/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,10 @@
},
"dependencies": <%- JSON.stringify(dependencies) %>,
"devDependencies": {
"husky": "~4.3.0",
"lint-staged": "~10.5.0",
"nodemon": "~2.0.0",
"standard": "~16.0.0",
"stylelint": "~13.9.0",
"stylelint-config-standard": "~20.0.0"
"stylelint": "~13.12.0",
"stylelint-config-standard": "~21.0.0"
},
"nodemonConfig": {
"ignore": [
Expand All @@ -30,11 +28,6 @@
"type": "git",
"url": "https://somewhere.url/user/repo.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"config-audit": "node ./node_modules/roosevelt/lib/scripts/configAuditor.js",
"d": "nodemon app.js --development-mode",
Expand All @@ -51,9 +44,5 @@
"start": "nodemon app.js --production-mode",
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.<%= cssExt %>\" <%= cssSyntax %>",
"test": "npm run lint"
},
"lint-staged": {
"*.<%= cssExt %>": "./node_modules/.bin/stylelint <%= cssSyntax %>",
"*.js": "standard"
}
}
Loading