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

Commit 1ff7411

Browse files
committed
v4.0.0
1 parent f19bc15 commit 1ff7411

File tree

6 files changed

+97
-4
lines changed

6 files changed

+97
-4
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/nuxt/create-nuxt-app/compare/v3.7.1...v4.0.0) (2021-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **ava:** revert require-extension-hooks-vue for fixing peer dep error on vue-template-compiler ([4b6247d](https://github.com/nuxt/create-nuxt-app/commit/4b6247d3968668dd045757ca1a08a8ff7f8ae5f9))
12+
* **axios:** avoid hard-coded base URL localhost:3000, fixes [#641](https://github.com/nuxt/create-nuxt-app/issues/641) ([#830](https://github.com/nuxt/create-nuxt-app/issues/830)) ([93297e5](https://github.com/nuxt/create-nuxt-app/commit/93297e55a142cebb61c09ac1f7f7f3ca68c5a2da))
13+
* **deps:** add nuxt required deps to root for avoiding hosting issue ([ca5e6b4](https://github.com/nuxt/create-nuxt-app/commit/ca5e6b47db23dc6c4b16a73b98ca1d8d3743b82d))
14+
* **husky:** revert stdin tty workaround of [#766](https://github.com/nuxt/create-nuxt-app/issues/766) for npm ([#825](https://github.com/nuxt/create-nuxt-app/issues/825)) ([1520453](https://github.com/nuxt/create-nuxt-app/commit/152045398e95dc08e5a38f35d4c8ea7ec1cff266))
15+
* **nightwatch:** use correct css selector ([f19bc15](https://github.com/nuxt/create-nuxt-app/commit/f19bc15836a9866f499312b40f54a0d90bb632cc))
16+
* **primevue:** fix primevue nuxt module name ([c12c1ee](https://github.com/nuxt/create-nuxt-app/commit/c12c1eed9f4b5201bc5e785813ae7f1bbada5e3f))
17+
* **stylelint:** unknown word on scss file ([9461143](https://github.com/nuxt/create-nuxt-app/commit/94611434d63fc334260592c2e25b06a1169695f4))
18+
* **vuetify:** update @nuxtjs/vuetify for using sass-loader v10 ([c897e1a](https://github.com/nuxt/create-nuxt-app/commit/c897e1ae60cc646c92749b2ad7c4e5282152609b))
19+
20+
21+
### chore
22+
23+
* remove node 10 support ([#905](https://github.com/nuxt/create-nuxt-app/issues/905)) ([a12df38](https://github.com/nuxt/create-nuxt-app/commit/a12df38fccd45103cdc64f770b5a7dca3bab88a8))
24+
25+
26+
### Features
27+
28+
* add lintfix and prettier scripts ([#829](https://github.com/nuxt/create-nuxt-app/issues/829)) ([f3e61cd](https://github.com/nuxt/create-nuxt-app/commit/f3e61cdad360e8837c66555b763bf4e29076c8a2)), closes [#827](https://github.com/nuxt/create-nuxt-app/issues/827)
29+
* add primevue ui framework ([#859](https://github.com/nuxt/create-nuxt-app/issues/859)) ([0fa8a67](https://github.com/nuxt/create-nuxt-app/commit/0fa8a67317491e0543799b07fdee58c70eef1545))
30+
* **cli:** add user-friendly exit for unknown options ([#854](https://github.com/nuxt/create-nuxt-app/issues/854)) ([b734105](https://github.com/nuxt/create-nuxt-app/commit/b73410519234c3ce3b97e5032d78d5e235b6b8f9))
31+
* **frameworks:** remove framevuerk ([#904](https://github.com/nuxt/create-nuxt-app/issues/904)) ([c54809d](https://github.com/nuxt/create-nuxt-app/commit/c54809d1b0553bc0b942f9393714284df4b911f9))
32+
33+
34+
### BREAKING CHANGES
35+
36+
* minimum node version is 12
37+
38+
39+
40+
41+
642
## [3.7.1](https://github.com/nuxt/create-nuxt-app/compare/v3.7.0...v3.7.1) (2021-06-29)
743

844

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "3.7.1",
2+
"version": "4.0.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
55
"packages": [

packages/cna-template/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/nuxt/create-nuxt-app/compare/v3.7.1...v4.0.0) (2021-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **ava:** revert require-extension-hooks-vue for fixing peer dep error on vue-template-compiler ([4b6247d](https://github.com/nuxt/create-nuxt-app/commit/4b6247d3968668dd045757ca1a08a8ff7f8ae5f9))
12+
* **axios:** avoid hard-coded base URL localhost:3000, fixes [#641](https://github.com/nuxt/create-nuxt-app/issues/641) ([#830](https://github.com/nuxt/create-nuxt-app/issues/830)) ([93297e5](https://github.com/nuxt/create-nuxt-app/commit/93297e55a142cebb61c09ac1f7f7f3ca68c5a2da))
13+
* **deps:** add nuxt required deps to root for avoiding hosting issue ([ca5e6b4](https://github.com/nuxt/create-nuxt-app/commit/ca5e6b47db23dc6c4b16a73b98ca1d8d3743b82d))
14+
* **husky:** revert stdin tty workaround of [#766](https://github.com/nuxt/create-nuxt-app/issues/766) for npm ([#825](https://github.com/nuxt/create-nuxt-app/issues/825)) ([1520453](https://github.com/nuxt/create-nuxt-app/commit/152045398e95dc08e5a38f35d4c8ea7ec1cff266))
15+
* **nightwatch:** use correct css selector ([f19bc15](https://github.com/nuxt/create-nuxt-app/commit/f19bc15836a9866f499312b40f54a0d90bb632cc))
16+
* **primevue:** fix primevue nuxt module name ([c12c1ee](https://github.com/nuxt/create-nuxt-app/commit/c12c1eed9f4b5201bc5e785813ae7f1bbada5e3f))
17+
* **stylelint:** unknown word on scss file ([9461143](https://github.com/nuxt/create-nuxt-app/commit/94611434d63fc334260592c2e25b06a1169695f4))
18+
* **vuetify:** update @nuxtjs/vuetify for using sass-loader v10 ([c897e1a](https://github.com/nuxt/create-nuxt-app/commit/c897e1ae60cc646c92749b2ad7c4e5282152609b))
19+
20+
21+
### Features
22+
23+
* add lintfix and prettier scripts ([#829](https://github.com/nuxt/create-nuxt-app/issues/829)) ([f3e61cd](https://github.com/nuxt/create-nuxt-app/commit/f3e61cdad360e8837c66555b763bf4e29076c8a2)), closes [#827](https://github.com/nuxt/create-nuxt-app/issues/827)
24+
* add primevue ui framework ([#859](https://github.com/nuxt/create-nuxt-app/issues/859)) ([0fa8a67](https://github.com/nuxt/create-nuxt-app/commit/0fa8a67317491e0543799b07fdee58c70eef1545))
25+
* **frameworks:** remove framevuerk ([#904](https://github.com/nuxt/create-nuxt-app/issues/904)) ([c54809d](https://github.com/nuxt/create-nuxt-app/commit/c54809d1b0553bc0b942f9393714284df4b911f9))
26+
27+
28+
29+
30+
631
## [3.7.1](https://github.com/nuxt/create-nuxt-app/compare/v3.7.0...v3.7.1) (2021-06-29)
732

833

packages/cna-template/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cna-template",
3-
"version": "3.7.1",
3+
"version": "4.0.0",
44
"description": "Templates for Create Nuxt App.",
55
"files": [
66
"template"

packages/create-nuxt-app/CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,38 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [4.0.0](https://github.com/nuxt/create-nuxt-app/compare/v3.7.1...v4.0.0) (2021-12-12)
7+
8+
9+
### Bug Fixes
10+
11+
* **axios:** avoid hard-coded base URL localhost:3000, fixes [#641](https://github.com/nuxt/create-nuxt-app/issues/641) ([#830](https://github.com/nuxt/create-nuxt-app/issues/830)) ([93297e5](https://github.com/nuxt/create-nuxt-app/commit/93297e55a142cebb61c09ac1f7f7f3ca68c5a2da))
12+
* **husky:** revert stdin tty workaround of [#766](https://github.com/nuxt/create-nuxt-app/issues/766) for npm ([#825](https://github.com/nuxt/create-nuxt-app/issues/825)) ([1520453](https://github.com/nuxt/create-nuxt-app/commit/152045398e95dc08e5a38f35d4c8ea7ec1cff266))
13+
* **primevue:** fix primevue nuxt module name ([c12c1ee](https://github.com/nuxt/create-nuxt-app/commit/c12c1eed9f4b5201bc5e785813ae7f1bbada5e3f))
14+
* **stylelint:** unknown word on scss file ([9461143](https://github.com/nuxt/create-nuxt-app/commit/94611434d63fc334260592c2e25b06a1169695f4))
15+
16+
17+
### chore
18+
19+
* remove node 10 support ([#905](https://github.com/nuxt/create-nuxt-app/issues/905)) ([a12df38](https://github.com/nuxt/create-nuxt-app/commit/a12df38fccd45103cdc64f770b5a7dca3bab88a8))
20+
21+
22+
### Features
23+
24+
* add lintfix and prettier scripts ([#829](https://github.com/nuxt/create-nuxt-app/issues/829)) ([f3e61cd](https://github.com/nuxt/create-nuxt-app/commit/f3e61cdad360e8837c66555b763bf4e29076c8a2)), closes [#827](https://github.com/nuxt/create-nuxt-app/issues/827)
25+
* add primevue ui framework ([#859](https://github.com/nuxt/create-nuxt-app/issues/859)) ([0fa8a67](https://github.com/nuxt/create-nuxt-app/commit/0fa8a67317491e0543799b07fdee58c70eef1545))
26+
* **cli:** add user-friendly exit for unknown options ([#854](https://github.com/nuxt/create-nuxt-app/issues/854)) ([b734105](https://github.com/nuxt/create-nuxt-app/commit/b73410519234c3ce3b97e5032d78d5e235b6b8f9))
27+
* **frameworks:** remove framevuerk ([#904](https://github.com/nuxt/create-nuxt-app/issues/904)) ([c54809d](https://github.com/nuxt/create-nuxt-app/commit/c54809d1b0553bc0b942f9393714284df4b911f9))
28+
29+
30+
### BREAKING CHANGES
31+
32+
* minimum node version is 12
33+
34+
35+
36+
37+
638
## [3.7.1](https://github.com/nuxt/create-nuxt-app/compare/v3.7.0...v3.7.1) (2021-06-29)
739

840
**Note:** Version bump only for package create-nuxt-app

packages/create-nuxt-app/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-nuxt-app",
3-
"version": "3.7.1",
3+
"version": "4.0.0",
44
"description": "Create a Nuxt.js App in seconds.",
55
"homepage": "https://github.com/nuxt/create-nuxt-app#readme",
66
"repository": {
@@ -14,7 +14,7 @@
1414
"dependencies": {
1515
"cac": "^6.7.12",
1616
"chalk": "^4.1.2",
17-
"cna-template": "^3.7.1",
17+
"cna-template": "^4.0.0",
1818
"cross-spawn": "^7.0.3",
1919
"envinfo": "^7.8.1",
2020
"lodash": "^4.17.21",

0 commit comments

Comments
 (0)