generator-nitro 9.0.0 → 9.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
20.
|
|
1
|
+
20.10.0
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"@gondel/core": "1.2.8",
|
|
82
82
|
"@gondel/plugin-hot": "1.2.8",
|
|
83
83
|
"bootstrap": "5.3.2",<% } %>
|
|
84
|
-
"core-js": "3.33.
|
|
84
|
+
"core-js": "3.33.3"<% if (options.exampleCode) { %>,
|
|
85
85
|
"flatpickr": "4.6.13",
|
|
86
86
|
"handlebars": "4.7.8",
|
|
87
87
|
"jquery": "3.7.1",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"svg4everybody": "2.1.9"<% } %>
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {<% if (options.jsCompiler === 'js') { %>
|
|
95
|
-
"@babel/eslint-parser": "7.
|
|
95
|
+
"@babel/eslint-parser": "7.23.3",<% } %>
|
|
96
96
|
"@merkle-open/eslint-config": "3.0.0",
|
|
97
97
|
"@merkle-open/html-validate-config": "1.0.1",
|
|
98
98
|
"@merkle-open/prettier-config": "1.2.0",
|
|
@@ -102,20 +102,20 @@
|
|
|
102
102
|
"@nitro/exporter": "<%= version %>",
|
|
103
103
|
"@nitro/gulp": "<%= version %>",
|
|
104
104
|
"@nitro/webpack": "<%= version %>",
|
|
105
|
-
"@playwright/test": "1.
|
|
106
|
-
"@types/bootstrap": "5.2.
|
|
107
|
-
"@types/jquery": "3.5.
|
|
108
|
-
"@types/svg4everybody": "2.1.
|
|
109
|
-
"@types/webpack-env": "1.18.
|
|
105
|
+
"@playwright/test": "1.40.0",<% if (options.jsCompiler === 'ts') { %>
|
|
106
|
+
"@types/bootstrap": "5.2.10",<% if (options.exampleCode ) { %>
|
|
107
|
+
"@types/jquery": "3.5.29",<% } %>
|
|
108
|
+
"@types/svg4everybody": "2.1.5",
|
|
109
|
+
"@types/webpack-env": "1.18.4",<% } %>
|
|
110
110
|
"backstopjs": "6.2.2",
|
|
111
111
|
"check-node-version": "4.2.1",
|
|
112
112
|
"commitizen": "4.3.0",
|
|
113
113
|
"config": "3.3.9",
|
|
114
114
|
"cross-env": "7.0.3",
|
|
115
|
-
"cypress": "13.
|
|
115
|
+
"cypress": "13.6.0",
|
|
116
116
|
"cz-conventional-changelog": "3.3.0",
|
|
117
117
|
"env-linter": "1.0.0",
|
|
118
|
-
"eslint": "8.
|
|
118
|
+
"eslint": "8.54.0",
|
|
119
119
|
"eslint-plugin-import": "2.29.0",
|
|
120
120
|
"extend": "3.0.2",
|
|
121
121
|
"generator-nitro": "<%= version %>",
|
|
@@ -123,17 +123,17 @@
|
|
|
123
123
|
"html-validate": "7.18.1",
|
|
124
124
|
"husky": "8.0.3",
|
|
125
125
|
"license-checker": "25.0.1",
|
|
126
|
-
"lighthouse": "11.
|
|
127
|
-
"lint-staged": "15.0
|
|
126
|
+
"lighthouse": "11.3.0",
|
|
127
|
+
"lint-staged": "15.1.0",<% if (options.themes) { %>
|
|
128
128
|
"node-sass": "8.0.0",<% } %>
|
|
129
|
-
"npm-check-updates": "16.14.
|
|
129
|
+
"npm-check-updates": "16.14.11",
|
|
130
130
|
"npm-run-all": "4.1.5",
|
|
131
|
-
"prettier": "3.0
|
|
131
|
+
"prettier": "3.1.0",
|
|
132
132
|
"rimraf": "5.0.5",
|
|
133
133
|
"stylelint": "15.11.0",<% if (options.jsCompiler === 'ts') { %>
|
|
134
|
-
"typescript": "5.
|
|
134
|
+
"typescript": "5.3.2",<% } %>
|
|
135
135
|
"webpack-cli": "4.10.0",
|
|
136
|
-
"yo": "
|
|
136
|
+
"yo": "5.0.0"
|
|
137
137
|
},
|
|
138
138
|
"browserslist": [
|
|
139
139
|
"> 0.2%",
|
|
@@ -6,9 +6,9 @@ const options = {
|
|
|
6
6
|
<% if (options.jsCompiler === 'ts') { %>js: false,
|
|
7
7
|
ts: true,<% } else { %>js: true,
|
|
8
8
|
ts: false,<% } %>
|
|
9
|
-
scss:
|
|
10
|
-
implementation: require('node-sass')
|
|
11
|
-
}
|
|
9
|
+
scss: <% if (options.themes) { %>{
|
|
10
|
+
implementation: require('node-sass'),
|
|
11
|
+
}<% } else { %>true<% } %>,
|
|
12
12
|
hbs: <% if (options.clientTpl) { %>true<% } else { %>false<% } %>,
|
|
13
13
|
woff: true,
|
|
14
14
|
image: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-nitro",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.2",
|
|
4
4
|
"description": "Yeoman generator for the nitro frontend framework",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@merkle-open/eslint-config": "3.0.0",
|
|
51
51
|
"ejs": "3.1.9",
|
|
52
|
-
"eslint": "8.
|
|
52
|
+
"eslint": "8.54.0",
|
|
53
53
|
"eslint-plugin-import": "2.29.0",
|
|
54
54
|
"fs-extra": "11.1.1",
|
|
55
55
|
"jasmine": "5.1.0",
|