generator-nitro 11.0.8 → 11.0.9
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
|
-
24.
|
|
1
|
+
24.15.0
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"lint": "npm-run-all --parallel lint:*",
|
|
31
31
|
"lint:css": "stylelint src/**/*.*ss --allow-empty-input",
|
|
32
32
|
"lint:data": "nitro-app-validate-pattern-data",
|
|
33
|
-
"lint:html": "gulp
|
|
33
|
+
"lint:html": "gulp dump-views && html-validate --formatter stylish ./project/tmp/views/*.html",
|
|
34
34
|
"lint:js": "eslint ./src --ext <% if (options.jsCompiler === 'js') { %>.js,.jsx<% } else { %>.ts,.tsx<% } %>",
|
|
35
35
|
"lint:license": "license-checker --production --summary --exclude \"Apache-2.0, BSD, ISC, LGPL, MIT, MPL\" --failOn \"AGPL; EPL; GPL\"",
|
|
36
36
|
"playwright-test": "cross-env PORT=8890 NITRO_MODE=test playwright test --config=tests/playwright/playwright.config.ts --ui",
|
|
@@ -94,8 +94,8 @@
|
|
|
94
94
|
"@merkle-open/eslint-config": "4.0.1",
|
|
95
95
|
"@merkle-open/html-validate-config": "2.0.1",
|
|
96
96
|
"@merkle-open/prettier-config": "2.0.1",
|
|
97
|
-
"@merkle-open/stylelint-config": "5.0.1"
|
|
98
|
-
"@merkle-open/ts-config": "1.1.2"
|
|
97
|
+
"@merkle-open/stylelint-config": "5.0.1",<% if (options.jsCompiler === 'ts') { %>
|
|
98
|
+
"@merkle-open/ts-config": "1.1.2",<% } %>
|
|
99
99
|
"@nitro/app": "<%= version %>",
|
|
100
100
|
"@nitro/exporter": "<%= version %>",
|
|
101
101
|
"@nitro/gulp": "<%= version %>",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"config": "4.4.1",<% if (options.themes) { %>
|
|
110
110
|
"cookie-session": "2.1.1",<% } %>
|
|
111
111
|
"cross-env": "10.1.0",
|
|
112
|
-
"cypress": "15.
|
|
112
|
+
"cypress": "15.14.0",
|
|
113
113
|
"env-linter": "2.0.0",
|
|
114
114
|
"eslint": "8.57.1",
|
|
115
115
|
"eslint-plugin-import": "2.32.0",
|
|
@@ -121,14 +121,14 @@
|
|
|
121
121
|
"license-checker": "25.0.1",
|
|
122
122
|
"lighthouse": "13.1.0",
|
|
123
123
|
"lint-staged": "16.4.0",
|
|
124
|
-
"npm-check-updates": "
|
|
124
|
+
"npm-check-updates": "21.0.2",
|
|
125
125
|
"npm-run-all": "4.1.5",
|
|
126
|
-
"prettier": "3.8.
|
|
126
|
+
"prettier": "3.8.3",
|
|
127
127
|
"rimraf": "6.1.3",
|
|
128
128
|
"stylelint": "16.26.1",<% if (options.jsCompiler === 'ts') { %>
|
|
129
129
|
"tslib": "2.8.1",
|
|
130
130
|
"typescript": "5.9.3",<% } %>
|
|
131
|
-
"webpack": "5.106.
|
|
131
|
+
"webpack": "5.106.2",
|
|
132
132
|
"webpack-cli": "7.0.2",
|
|
133
133
|
"yo": "7.0.1"
|
|
134
134
|
},
|
|
@@ -10,7 +10,6 @@ gulp.task('svg-sprites', getTask('svg-sprites'));
|
|
|
10
10
|
gulp.task('assets', gulp.parallel('copy-assets', 'minify-images', 'svg-sprites'));
|
|
11
11
|
gulp.task('watch-assets', gulp.series(['assets'], getTask('watch-assets')));
|
|
12
12
|
gulp.task('develop', gulp.series('watch-assets'));
|
|
13
|
-
gulp.task('dump-views', getTask('dump-views'))
|
|
14
|
-
gulp.task('lint-html', gulp.series(['dump-views'], getTask('lint-html')));<% if (options.exporter) { %>
|
|
13
|
+
gulp.task('dump-views', getTask('dump-views'));<% if (options.exporter) { %>
|
|
15
14
|
|
|
16
15
|
require('@nitro/exporter')(gulp, config);<% } %>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-nitro",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.9",
|
|
4
4
|
"description": "Yeoman generator for the nitro frontend framework",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"find-git-root": "1.1.0",
|
|
42
42
|
"git-config": "0.0.7",
|
|
43
43
|
"glob": "13.0.6",
|
|
44
|
-
"got": "15.0.
|
|
44
|
+
"got": "15.0.2",
|
|
45
45
|
"lodash": "4.18.1",
|
|
46
46
|
"yeoman-generator": "8.1.2",
|
|
47
47
|
"yosay": "3.0.0"
|