create-nuxt-base 0.1.19 → 0.1.20
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.
- package/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/index.js +22 -29
- package/nuxt-base-template/package-lock.json +24187 -0
- package/nuxt-base-template/package.json +2 -4
- package/package.json +1 -1
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"cy:open": "npx cypress open",
|
|
15
15
|
"lint": "eslint --ext .ts,.js,.vue .",
|
|
16
16
|
"lint:fix": "eslint --ext .ts,.js,.vue . --fix",
|
|
17
|
-
"prepare": "husky install",
|
|
18
17
|
"release": "standard-version && git push --follow-tags origin main",
|
|
19
18
|
"release:minor": "standard-version --release-as minor && git push --follow-tags origin main",
|
|
20
19
|
"release:major": "standard-version --release-as major && git push --follow-tags origin main"
|
|
@@ -31,15 +30,14 @@
|
|
|
31
30
|
"@badeball/cypress-cucumber-preprocessor": "18.0.0",
|
|
32
31
|
"@cypress/webpack-preprocessor": "5.17.1",
|
|
33
32
|
"@lenne.tech/eslint-config-vue": "0.0.6",
|
|
34
|
-
"@nuxt/test-utils": "3.
|
|
33
|
+
"@nuxt/test-utils": "3.6.1",
|
|
35
34
|
"@nuxtjs/tailwindcss": "6.7.0",
|
|
36
35
|
"@vitejs/plugin-vue": "4.2.3",
|
|
37
36
|
"@vue/test-utils": "2.3.2",
|
|
38
37
|
"cypress": "12.14.0",
|
|
39
38
|
"eslint": "8.42.0",
|
|
40
|
-
"husky": "8.0.3",
|
|
41
39
|
"jsdom": "22.1.0",
|
|
42
|
-
"nuxt": "3.
|
|
40
|
+
"nuxt": "3.6.1",
|
|
43
41
|
"standard-version": "9.5.0",
|
|
44
42
|
"ts-loader": "9.4.3",
|
|
45
43
|
"typescript": "5.1.3",
|
package/package.json
CHANGED