Skip to content
This repository was archived by the owner on Mar 30, 2021. It is now read-only.

Commit 15bdbd6

Browse files
committed
Updated dependencies, package.json and fixed linting error
The versions of the dependencies listed in package.json were outdated for the generator as well as the templates, this fixes that. It also fixes a linting error in index.js.
1 parent 57c1f70 commit 15bdbd6

File tree

4 files changed

+2221
-2380
lines changed

4 files changed

+2221
-2380
lines changed

generators/app/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ function toCamelCase(aString) {
153153
} else {
154154
camelString += token[0].toUpperCase(); // Capitalize the first letter of other words
155155
}
156+
156157
camelString += token.substring(1, token.length);
157158
return true;
158159
});

generators/app/templates/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@
2020
"dependencies": {
2121
},
2222
"devDependencies": {
23-
"express": "^4.16.3",
24-
"less": "^3.8.1",
23+
"express": "^4.17.1",
24+
"less": "^3.9.0",
2525
"less-plugin-clean-css": "^1.5.1",
26-
"webpack": "^4.16.5",
27-
"webpack-cli": "^3.1.0",
28-
"@babel/core": "^7.2.0",
29-
"@babel/preset-env": "^7.2.0",
30-
"babel-loader": "^8.0.4",
31-
"css-loader": "^2.0.0",
32-
"hybrids": "^1.5.0",
33-
"raw-loader": "^0.5.1"
26+
"webpack": "^4.32.2",
27+
"webpack-cli": "^3.3.2",
28+
"@babel/core": "^7.4.5",
29+
"@babel/preset-env": "^7.4.5",
30+
"babel-loader": "^8.0.6",
31+
"css-loader": "^2.1.1",
32+
"hybrids": "^3.0.2",
33+
"raw-loader": "^2.0.0"
3434
},
3535
"sniper": {
3636
"buildJS": [

0 commit comments

Comments
 (0)