create-vue 3.10.3 → 3.11.0

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.
Files changed (81) hide show
  1. package/LICENSE +0 -29
  2. package/README.md +15 -6
  3. package/locales/tr-TR.json +1 -1
  4. package/outfile.cjs +457 -1073
  5. package/package.json +14 -15
  6. package/template/base/node_modules/.bin/tsc +17 -0
  7. package/template/base/node_modules/.bin/tsserver +17 -0
  8. package/template/base/node_modules/.bin/vite +2 -2
  9. package/template/base/package.json +3 -3
  10. package/template/base/vite.config.js.ejs +1 -1
  11. package/template/code/default/src/components/HelloWorld.vue +1 -1
  12. package/template/code/default/src/components/TheWelcome.vue +1 -1
  13. package/template/code/router/src/components/HelloWorld.vue +1 -1
  14. package/template/code/router/src/components/TheWelcome.vue +1 -1
  15. package/template/code/typescript-default/src/components/HelloWorld.vue +1 -1
  16. package/template/code/typescript-default/src/components/TheWelcome.vue +1 -1
  17. package/template/code/typescript-router/src/components/HelloWorld.vue +1 -1
  18. package/template/code/typescript-router/src/components/TheWelcome.vue +1 -1
  19. package/template/config/cypress/node_modules/.bin/cypress +2 -2
  20. package/template/config/cypress/node_modules/.bin/server-test +2 -2
  21. package/template/config/cypress/node_modules/.bin/start-server-and-test +2 -2
  22. package/template/config/cypress/node_modules/.bin/start-test +2 -2
  23. package/template/config/cypress/package.json +2 -2
  24. package/template/config/cypress-ct/node_modules/.bin/cypress +2 -2
  25. package/template/config/cypress-ct/node_modules/.bin/tsc +17 -0
  26. package/template/config/cypress-ct/node_modules/.bin/tsserver +17 -0
  27. package/template/config/cypress-ct/package.json +2 -2
  28. package/template/config/devtools/node_modules/.bin/rollup +17 -0
  29. package/template/config/devtools/node_modules/.bin/tsc +17 -0
  30. package/template/config/devtools/node_modules/.bin/tsserver +17 -0
  31. package/template/config/devtools/node_modules/.bin/vite +4 -4
  32. package/template/config/devtools/package.json +1 -1
  33. package/template/config/devtools/vite.config.js.data.mjs +2 -2
  34. package/template/config/jsx/node_modules/.bin/browserslist +4 -4
  35. package/template/config/jsx/node_modules/.bin/tsc +17 -0
  36. package/template/config/jsx/node_modules/.bin/tsserver +17 -0
  37. package/template/config/jsx/node_modules/.bin/vite +2 -2
  38. package/template/config/jsx/package.json +3 -3
  39. package/template/config/nightwatch/node_modules/.bin/chromedriver +2 -2
  40. package/template/config/nightwatch/node_modules/.bin/geckodriver +2 -2
  41. package/template/config/nightwatch/node_modules/.bin/nightwatch +2 -2
  42. package/template/config/nightwatch/node_modules/.bin/ts-node +2 -2
  43. package/template/config/nightwatch/node_modules/.bin/ts-node-cwd +2 -2
  44. package/template/config/nightwatch/node_modules/.bin/ts-node-esm +2 -2
  45. package/template/config/nightwatch/node_modules/.bin/ts-node-script +2 -2
  46. package/template/config/nightwatch/node_modules/.bin/ts-node-transpile-only +2 -2
  47. package/template/config/nightwatch/node_modules/.bin/ts-script +2 -2
  48. package/template/config/nightwatch/node_modules/.bin/tsc +4 -4
  49. package/template/config/nightwatch/node_modules/.bin/tsserver +4 -4
  50. package/template/config/nightwatch/node_modules/.bin/vite +4 -4
  51. package/template/config/nightwatch/package.json +6 -5
  52. package/template/config/nightwatch-ct/node_modules/.bin/tsc +17 -0
  53. package/template/config/nightwatch-ct/node_modules/.bin/tsserver +17 -0
  54. package/template/config/nightwatch-ct/package.json +2 -2
  55. package/template/config/pinia/node_modules/.bin/tsc +17 -0
  56. package/template/config/pinia/node_modules/.bin/tsserver +17 -0
  57. package/template/config/pinia/package.json +2 -2
  58. package/template/config/playwright/node_modules/.bin/playwright +2 -2
  59. package/template/config/playwright/package.json +1 -1
  60. package/template/config/playwright/playwright.config.js +3 -3
  61. package/template/config/router/node_modules/.bin/tsc +17 -0
  62. package/template/config/router/node_modules/.bin/tsserver +17 -0
  63. package/template/config/router/package.json +2 -2
  64. package/template/config/typescript/node_modules/.bin/npm-run-all +2 -2
  65. package/template/config/typescript/node_modules/.bin/npm-run-all2 +2 -2
  66. package/template/config/typescript/node_modules/.bin/run-p +2 -2
  67. package/template/config/typescript/node_modules/.bin/run-s +2 -2
  68. package/template/config/typescript/node_modules/.bin/tsc +2 -2
  69. package/template/config/typescript/node_modules/.bin/tsserver +2 -2
  70. package/template/config/typescript/node_modules/.bin/vue-tsc +2 -2
  71. package/template/config/typescript/package.json +4 -4
  72. package/template/config/vitest/.vscode/extensions.json +3 -0
  73. package/template/config/vitest/node_modules/.bin/tsc +17 -0
  74. package/template/config/vitest/node_modules/.bin/tsserver +17 -0
  75. package/template/config/vitest/node_modules/.bin/vitest +2 -2
  76. package/template/config/vitest/package.json +4 -4
  77. package/template/eslint/package.json +3 -2
  78. package/template/tsconfig/cypress/cypress/e2e/tsconfig.json +0 -2
  79. package/template/tsconfig/vitest/package.json +1 -1
  80. package/template/config/devtools/node_modules/.bin/browserslist +0 -17
  81. package/template/config/nightwatch/node_modules/.bin/browserslist +0 -17
package/LICENSE CHANGED
@@ -270,35 +270,6 @@ Repository: git://github.com/mde/ejs.git
270
270
  > limitations under the License.
271
271
  >
272
272
 
273
- ## javascript-stringify
274
-
275
- License: MIT
276
- By: Blake Embrey
277
- Repository: git+https://github.com/blakeembrey/javascript-stringify.git
278
-
279
- > The MIT License (MIT)
280
- >
281
- > Copyright (c) 2013 Blake Embrey (hello@blakeembrey.com)
282
- >
283
- > Permission is hereby granted, free of charge, to any person obtaining a copy
284
- > of this software and associated documentation files (the "Software"), to deal
285
- > in the Software without restriction, including without limitation the rights
286
- > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
287
- > copies of the Software, and to permit persons to whom the Software is
288
- > furnished to do so, subject to the following conditions:
289
- >
290
- > The above copyright notice and this permission notice shall be included in
291
- > all copies or substantial portions of the Software.
292
- >
293
- > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
294
- > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
295
- > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
296
- > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
297
- > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
298
- > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
299
- > THE SOFTWARE.
300
- >
301
-
302
273
  ## kleur
303
274
 
304
275
  License: MIT
package/README.md CHANGED
@@ -3,31 +3,40 @@
3
3
  The recommended way to start a Vite-powered Vue project
4
4
 
5
5
  <p align="center">
6
- <img src="https://github.com/vuejs/create-vue/blob/main/media/screenshot-cli.png?raw=true" width="800">
6
+ <img src="https://github.com/vuejs/create-vue/blob/main/media/screenshot-cli.png?raw=true" width="802">
7
7
  </p>
8
8
 
9
9
  ## Usage
10
10
 
11
+ To create a new Vue project using `create-vue`, simply run the following command in your terminal:
12
+
11
13
  ```sh
12
14
  npm create vue@latest
13
15
  ```
14
16
 
17
+ > [!NOTE]
18
+ > (`@latest` or `@legacy`) MUST NOT be omitted, otherwise `npm` may resolve to a cached and outdated version of the package.
19
+
15
20
  Or, if you need to support IE11, you can create a Vue 2 project with:
16
21
 
17
22
  ```sh
18
23
  npm create vue@legacy
19
24
  ```
20
25
 
21
- Note that the tag name (`@latest` or `@legacy`) MUST NOT be omitted, otherwise `npm` may resolve to a cached and outdated version of the package.
26
+ > [!WARNING]
27
+ > [Vue 2 Has Reached End of Life](https://v2.vuejs.org/eol/)
22
28
 
23
29
  ## Difference from Vue CLI
24
30
 
25
- - Vue CLI is based on webpack, while `create-vue` is based on [Vite](https://vitejs.dev/). Vite supports most of the configured conventions found in Vue CLI projects out of the box, and provides a significantly better development experience due to its extremely fast startup and hot-module replacement speed. Learn more about why we recommend Vite over webpack [here](https://vitejs.dev/guide/why.html).
31
+ - Vite-Powered: Vue CLI is based on webpack, while `create-vue` is based on [Vite](https://vite.dev/). Vite supports most of the configured conventions found in Vue CLI projects out of the box, and provides a significantly better development experience due to its extremely fast startup and hot-module replacement speed. Learn more about why we recommend Vite over webpack [here](https://vite.dev/guide/why.html).
26
32
 
27
- - Unlike Vue CLI, `create-vue` itself is just a scaffolding tool: it creates a pre-configured project based on the features you choose, and delegates the rest to Vite. Projects scaffolded this way can directly leverage the [Vite plugin ecosystem](https://vitejs.dev/plugins/) which is Rollup-compatible.
33
+ - Scaffolding Tool: Unlike Vue CLI, `create-vue` itself is just a scaffolding tool. It creates a pre-configured project based on the features you choose, and delegates the rest to Vite. Projects scaffolded this way can directly leverage the [Vite plugin ecosystem](https://vite.dev/plugins/) which is Rollup-compatible.
28
34
 
29
35
  ## Migrating from Vue CLI
30
36
 
31
- - [Vue CLI -> Vite Migration Guide from VueSchool.io](https://vueschool.io/articles/vuejs-tutorials/how-to-migrate-from-vue-cli-to-vite/)
37
+ If you're transitioning from Vue CLI to Create Vue, we've got you covered. Here are some resources to help you with the migration:
38
+ How to Migrate from Vue CLI to Vite
32
39
 
33
- - [Tools / Plugins that help with auto migration](https://github.com/vitejs/awesome-vite#vue-cli)
40
+ - Vue CLI to Vite Migration Guide: A comprehensive guide on migrating from Vue CLI to Vite, available on [VueSchool.io](https://vueschool.io/articles/vuejs-tutorials/how-to-migrate-from-vue-cli-to-vite/)
41
+ - Tools and Plugins for Migration: For a smoother transition, check out the list of tools and plugins designed to assist with the migration process on the
42
+ [Awesome Vite GitHub page](https://github.com/vitejs/awesome-vite#vue-cli).
@@ -51,7 +51,7 @@
51
51
  "message": "Kod formatlama için Prettier eklensin mi?"
52
52
  },
53
53
  "needsDevTools": {
54
- "message": "Add Vue DevTools 7 extension for debugging? (experimental)"
54
+ "message": "Hata ayıklama için Vue DevTools 7 eklentisi eklensin mi? (deneysel)"
55
55
  },
56
56
  "errors": {
57
57
  "operationCancelled": "İşlem iptal edildi"