create-vue 1.0.2 → 2.0.3

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 (89) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +11 -0
  3. package/outfile.cjs +5700 -0
  4. package/package.json +42 -31
  5. package/template/base/.vscode/extensions.json +3 -0
  6. package/template/base/_gitignore +27 -0
  7. package/template/base/index.html +13 -0
  8. package/template/base/package.json +19 -0
  9. package/template/base/public/favicon.ico +0 -0
  10. package/template/base/vite.config.js +25 -0
  11. package/template/code/default/cypress/integration/example.spec.js +8 -0
  12. package/template/code/default/src/App.vue +83 -0
  13. package/template/code/default/src/assets/base.css +74 -0
  14. package/template/code/default/src/assets/logo.svg +1 -0
  15. package/template/code/default/src/components/HelloWorld.vue +44 -0
  16. package/template/code/default/src/components/TheWelcome.vue +86 -0
  17. package/template/code/default/src/components/WelcomeItem.vue +86 -0
  18. package/template/code/default/src/components/__tests__/HelloWorld.spec.js +13 -0
  19. package/template/code/default/src/components/icons/IconCommunity.vue +7 -0
  20. package/template/code/default/src/components/icons/IconDocumentation.vue +7 -0
  21. package/template/code/default/src/components/icons/IconEcosystem.vue +7 -0
  22. package/template/code/default/src/components/icons/IconSupport.vue +7 -0
  23. package/template/code/default/src/components/icons/IconTooling.vue +19 -0
  24. package/template/code/router/cypress/integration/example.spec.js +13 -0
  25. package/template/code/router/src/App.vue +120 -0
  26. package/template/code/router/src/assets/base.css +74 -0
  27. package/template/code/router/src/assets/logo.svg +1 -0
  28. package/template/code/router/src/components/HelloWorld.vue +44 -0
  29. package/template/code/router/src/components/TheWelcome.vue +86 -0
  30. package/template/code/router/src/components/WelcomeItem.vue +86 -0
  31. package/template/code/router/src/components/__tests__/HelloWorld.spec.js +13 -0
  32. package/template/code/router/src/components/icons/IconCommunity.vue +7 -0
  33. package/template/code/router/src/components/icons/IconDocumentation.vue +7 -0
  34. package/template/code/router/src/components/icons/IconEcosystem.vue +7 -0
  35. package/template/code/router/src/components/icons/IconSupport.vue +7 -0
  36. package/template/code/router/src/components/icons/IconTooling.vue +19 -0
  37. package/template/code/router/src/router/index.js +27 -0
  38. package/template/code/router/src/views/AboutView.vue +15 -0
  39. package/template/code/router/src/views/HomeView.vue +9 -0
  40. package/template/code/typescript-default/cypress/integration/example.spec.ts +8 -0
  41. package/template/code/typescript-default/src/App.vue +83 -0
  42. package/template/code/typescript-default/src/assets/base.css +74 -0
  43. package/template/code/typescript-default/src/assets/logo.svg +1 -0
  44. package/template/code/typescript-default/src/components/HelloWorld.vue +41 -0
  45. package/template/code/typescript-default/src/components/TheWelcome.vue +86 -0
  46. package/template/code/typescript-default/src/components/WelcomeItem.vue +86 -0
  47. package/template/code/typescript-default/src/components/__tests__/HelloWorld.spec.ts +13 -0
  48. package/template/code/typescript-default/src/components/icons/IconCommunity.vue +7 -0
  49. package/template/code/typescript-default/src/components/icons/IconDocumentation.vue +7 -0
  50. package/template/code/typescript-default/src/components/icons/IconEcosystem.vue +7 -0
  51. package/template/code/typescript-default/src/components/icons/IconSupport.vue +7 -0
  52. package/template/code/typescript-default/src/components/icons/IconTooling.vue +19 -0
  53. package/template/code/typescript-router/cypress/integration/example.spec.ts +13 -0
  54. package/template/code/typescript-router/src/App.vue +120 -0
  55. package/template/code/typescript-router/src/assets/base.css +74 -0
  56. package/template/code/typescript-router/src/assets/logo.svg +1 -0
  57. package/template/code/typescript-router/src/components/HelloWorld.vue +41 -0
  58. package/template/code/typescript-router/src/components/TheWelcome.vue +86 -0
  59. package/template/code/typescript-router/src/components/WelcomeItem.vue +86 -0
  60. package/template/code/typescript-router/src/components/__tests__/HelloWorld.spec.ts +13 -0
  61. package/template/code/typescript-router/src/components/icons/IconCommunity.vue +7 -0
  62. package/template/code/typescript-router/src/components/icons/IconDocumentation.vue +7 -0
  63. package/template/code/typescript-router/src/components/icons/IconEcosystem.vue +7 -0
  64. package/template/code/typescript-router/src/components/icons/IconSupport.vue +7 -0
  65. package/template/code/typescript-router/src/components/icons/IconTooling.vue +19 -0
  66. package/template/code/typescript-router/src/router/index.ts +27 -0
  67. package/template/code/typescript-router/src/views/AboutView.vue +15 -0
  68. package/template/code/typescript-router/src/views/HomeView.vue +9 -0
  69. package/template/config/cypress/cypress/fixtures/example.json +5 -0
  70. package/template/config/cypress/cypress/jsconfig.json +8 -0
  71. package/template/config/cypress/cypress/plugins/index.js +28 -0
  72. package/template/config/cypress/cypress/support/commands.js +25 -0
  73. package/template/config/cypress/cypress/support/index.js +20 -0
  74. package/template/config/cypress/cypress.json +7 -0
  75. package/template/config/cypress/package.json +14 -0
  76. package/template/config/pinia/package.json +5 -0
  77. package/template/config/pinia/src/stores/counter.js +16 -0
  78. package/template/config/router/package.json +5 -0
  79. package/template/config/typescript/env.d.ts +16 -0
  80. package/template/config/typescript/package.json +11 -0
  81. package/template/config/typescript/tsconfig.json +24 -0
  82. package/template/entry/default/src/main.js +12 -0
  83. package/template/entry/pinia/src/main.js +15 -0
  84. package/template/entry/router/src/main.js +14 -0
  85. package/template/entry/router-and-pinia/src/main.js +17 -0
  86. package/src/config/index.js +0 -33
  87. package/src/main.js +0 -270
  88. package/src/render.js +0 -30
  89. package/yarn.lock +0 -1011

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.