generator-nitro 7.0.0 → 7.0.1

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.
@@ -312,7 +312,7 @@ module.exports = class extends Generator {
312
312
  'src/ui.ts',
313
313
  'src/proto.js',
314
314
  'src/proto.ts',
315
- 'tests/cypress/cypress/integration/examples/index.spec.js',
315
+ 'tests/cypress/cypress/e2e/examples/index.cy.js',
316
316
  '.eslintrc.js',
317
317
  'docker-compose.yml',
318
318
  'docker-compose-dev.yml',
@@ -402,7 +402,7 @@ module.exports = class extends Generator {
402
402
  'src/patterns/',
403
403
  'src/proto/utils/',
404
404
  'src/shared/',
405
- 'tests/cypress/cypress/integration/examples/',
405
+ 'tests/cypress/cypress/e2e/examples/',
406
406
  ];
407
407
  const exampleIncludeAnyway = [
408
408
  // example file "parts" included for this.options.exampleCode===false
@@ -108,26 +108,26 @@
108
108
  "@types/bootstrap": "5.1.11",<% if (options.exampleCode ) { %>
109
109
  "@types/jquery": "3.5.14",<% } %>
110
110
  "@types/svg4everybody": "2.1.2",
111
- "@types/webpack-env": "1.16.4",<% } %>
111
+ "@types/webpack-env": "1.17.0",<% } %>
112
112
  "backstopjs": "6.1.0",
113
113
  "check-node-version": "4.2.1",
114
114
  "commitizen": "4.2.4",
115
115
  "config": "3.3.7",
116
116
  "cross-env": "7.0.3",
117
- "cypress": "10.0.2",
117
+ "cypress": "10.0.3",
118
118
  "cz-conventional-changelog": "3.3.0",
119
- "env-linter": "0.5.1",
119
+ "env-linter": "1.0.0",
120
120
  "eslint": "7.32.0",
121
121
  "eslint-plugin-import": "2.26.0",
122
122
  "extend": "3.0.2",
123
123
  "generator-nitro": "<%= version %>",
124
124
  "gulp": "4.0.2",
125
- "husky": "7.0.4",
125
+ "husky": "8.0.1",
126
126
  "license-checker": "25.0.1",
127
- "lighthouse": "9.6.1",
128
- "lint-staged": "13.0.0",<% if (options.themes) { %>
127
+ "lighthouse": "9.6.2",
128
+ "lint-staged": "13.0.1",<% if (options.themes) { %>
129
129
  "node-sass": "6.0.1",<% } %>
130
- "npm-check-updates": "13.1.1",
130
+ "npm-check-updates": "13.1.2",
131
131
  "npm-run-all": "4.1.5",
132
132
  "prettier": "2.6.2",
133
133
  "rimraf": "3.0.2",
@@ -22,4 +22,4 @@
22
22
  //
23
23
  //
24
24
  // -- This will overwrite an existing command --
25
- // Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
25
+ // Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
@@ -1,4 +1,4 @@
1
- const {defineConfig} = require('cypress');
1
+ const { defineConfig } = require('cypress');
2
2
 
3
3
  module.exports = defineConfig({
4
4
  e2e: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-nitro",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Yeoman generator for the nitro frontend framework",
5
5
  "license": "MIT",
6
6
  "repository": "merkle-open/generator-nitro",