@skirtle/create-vue-lib 0.0.0 → 0.0.2

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 (39) hide show
  1. package/README.md +2 -0
  2. package/dist/index.cjs +337 -162
  3. package/dist/template/base/config/{.editorconfig → .editorconfig.ejs} +6 -0
  4. package/dist/template/base/config/.gitignore.ejs +33 -0
  5. package/dist/template/base/config/.vscode/extensions.json.ejs +10 -0
  6. package/dist/template/base/config/.vscode/settings.json.ejs +13 -0
  7. package/dist/template/base/config/LICENSE +0 -0
  8. package/dist/template/base/config/package.json.ejs +37 -5
  9. package/dist/template/base/config/packages/@projectName@/package.json +13 -16
  10. package/dist/template/base/config/packages/@projectName@/src/global.d.ts.ejs +4 -0
  11. package/dist/template/base/config/packages/@projectName@/{tsconfig.app.json → tsconfig.app.json.ejs} +3 -1
  12. package/dist/template/base/config/packages/@projectName@/tsconfig.node.json +1 -1
  13. package/dist/template/base/config/packages/@projectName@/tsconfig.vitest.json +1 -1
  14. package/dist/template/base/config/packages/@projectName@/{vite.config.mts → vite.config.mts.ejs} +26 -11
  15. package/dist/template/base/examples/packages/@projectName@/src/components/{Example.vue → ExampleComponent.vue.ejs} +4 -1
  16. package/dist/template/base/examples/packages/@projectName@/src/index.ts +1 -1
  17. package/dist/template/eslint/config/eslint.config.mts.ejs +33 -0
  18. package/dist/template/eslint/config/tsconfig.json +10 -0
  19. package/dist/template/gh-pages/config/.github/workflows/pages.yml +0 -2
  20. package/dist/template/playground/config/packages/playground/env.d.ts +2 -1
  21. package/dist/template/playground/config/packages/playground/package.json +6 -4
  22. package/dist/template/playground/config/packages/playground/tsconfig.app.json.ejs +13 -0
  23. package/dist/template/playground/config/packages/playground/tsconfig.node.json +1 -1
  24. package/dist/template/playground/config/packages/playground/vite.config.mts.ejs +45 -0
  25. package/dist/template/playground/examples/packages/playground/src/App.vue +1 -1
  26. package/dist/template/vitepress/config/packages/docs/.vitepress/config.mts.ejs +28 -3
  27. package/dist/template/vitepress/config/packages/docs/env.d.ts +2 -1
  28. package/dist/template/vitepress/config/packages/docs/package.json +7 -4
  29. package/dist/template/vitepress/config/packages/docs/tsconfig.app.json.ejs +22 -0
  30. package/dist/template/vitepress/config/packages/docs/tsconfig.node.json +1 -9
  31. package/dist/template/vitepress/examples/packages/docs/src/index.md +1 -1
  32. package/dist/template/vitepress/examples/packages/docs/src/introduction.md +1 -1
  33. package/package.json +8 -8
  34. package/dist/template/base/config/packages/@projectName@/README.md.ejs +0 -5
  35. package/dist/template/base/config/packages/@projectName@/src/global.d.ts +0 -1
  36. package/dist/template/base/config/tsconfig.json +0 -4
  37. package/dist/template/playground/config/packages/playground/tsconfig.app.json +0 -11
  38. package/dist/template/playground/config/packages/playground/vite.config.mts +0 -22
  39. package/dist/template/vitepress/config/packages/docs/tsconfig.app.json +0 -13
package/README.md CHANGED
@@ -4,6 +4,8 @@ A command-line utility for scaffolding a Vite project to build a Vue-based libra
4
4
 
5
5
  ⚠️ This is currently work-in-progress. It is not yet usable.
6
6
 
7
+ Documentation: <https://skirtles-code.github.io/create-vue-lib/>
8
+
7
9
  ## Thanks
8
10
 
9
11
  This project is inspired by the official [create-vue](https://github.com/vuejs/create-vue) scaffolding tool and wouldn't be possible without it. Many thanks to [Haoqun Jiang](https://github.com/haoqunjiang) for all the hard work he puts in to maintaining that project.