Skip to content

Commit be8965c

Browse files
authored
Merge pull request #382 from kethinov/0.19.5
0.19.5
2 parents 8a0d8a6 + cc0a1b4 commit be8965c

File tree

4 files changed

+239
-120
lines changed

4 files changed

+239
-120
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
- Put your changes here...
66

7+
## 0.19.5
8+
9+
- 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.
10+
- Removed husky and lint-staged from the default deps in generated apps.
11+
- Suppressed unnecessary logs in tests.
12+
- Various dependencies bumped.
13+
714
## 0.19.4
815

916
- Removed deprecated code from generator.

generators/app/templates/_package.json

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@
1111
},
1212
"dependencies": <%- JSON.stringify(dependencies) %>,
1313
"devDependencies": {
14-
"husky": "~4.3.0",
15-
"lint-staged": "~10.5.0",
1614
"nodemon": "~2.0.0",
1715
"standard": "~16.0.0",
18-
"stylelint": "~13.9.0",
19-
"stylelint-config-standard": "~20.0.0"
16+
"stylelint": "~13.12.0",
17+
"stylelint-config-standard": "~21.0.0"
2018
},
2119
"nodemonConfig": {
2220
"ignore": [
@@ -30,11 +28,6 @@
3028
"type": "git",
3129
"url": "https://somewhere.url/user/repo.git"
3230
},
33-
"husky": {
34-
"hooks": {
35-
"pre-commit": "lint-staged"
36-
}
37-
},
3831
"scripts": {
3932
"config-audit": "node ./node_modules/roosevelt/lib/scripts/configAuditor.js",
4033
"d": "nodemon app.js --development-mode",
@@ -51,9 +44,5 @@
5144
"start": "nodemon app.js --production-mode",
5245
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.<%= cssExt %>\" <%= cssSyntax %>",
5346
"test": "npm run lint"
54-
},
55-
"lint-staged": {
56-
"*.<%= cssExt %>": "./node_modules/.bin/stylelint <%= cssSyntax %>",
57-
"*.js": "standard"
5847
}
5948
}

0 commit comments

Comments
 (0)