create-packer 1.12.4 → 1.12.6

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 (102) hide show
  1. package/.gitignore +27 -27
  2. package/LICENSE +21 -21
  3. package/README.md +18 -18
  4. package/bin/clis/createTemp.d.ts +5 -5
  5. package/bin/clis/createTemp.js +58 -58
  6. package/bin/index.d.ts +2 -2
  7. package/bin/index.js +10 -10
  8. package/bin/utils/index.d.ts +4 -4
  9. package/bin/utils/index.js +45 -45
  10. package/package.json +43 -43
  11. package/template/docusaurus/.gitignore +20 -20
  12. package/template/docusaurus/.prettierignore +6 -6
  13. package/template/docusaurus/.prettierrc.js +20 -20
  14. package/template/docusaurus/README.md +33 -33
  15. package/template/docusaurus/babel.config.js +3 -3
  16. package/template/docusaurus/blog/2019-05-28-hola.md +11 -11
  17. package/template/docusaurus/blog/2019-05-29-hello-world.md +17 -17
  18. package/template/docusaurus/blog/2019-05-30-welcome.md +13 -13
  19. package/template/docusaurus/docs/doc1/doc1.mdx +201 -201
  20. package/template/docusaurus/docs/doc1/doc2.mdx +5 -5
  21. package/template/docusaurus/docs/doc1/doc3.mdx +13 -13
  22. package/template/docusaurus/docs/doc1/doc4.mdx +23 -23
  23. package/template/docusaurus/docs/doc2/doc1.mdx +200 -200
  24. package/template/docusaurus/docs/doc2/doc2.mdx +5 -5
  25. package/template/docusaurus/docs/doc2/doc3.mdx +13 -13
  26. package/template/docusaurus/docs/doc2/mdx4.mdx +23 -23
  27. package/template/docusaurus/docusaurus.config.js +134 -134
  28. package/template/docusaurus/package.json +54 -54
  29. package/template/docusaurus/sidebars.js +14 -14
  30. package/template/docusaurus/src/css/custom.css +33 -33
  31. package/template/docusaurus/src/pages/index.tsx +18 -18
  32. package/template/docusaurus/static/img/undraw_docusaurus_mountain.svg +170 -170
  33. package/template/docusaurus/static/img/undraw_docusaurus_react.svg +169 -169
  34. package/template/docusaurus/tsconfig.json +4 -4
  35. package/template/lib/.changeset/README.md +8 -8
  36. package/template/lib/.changeset/config.json +11 -11
  37. package/template/lib/.gitignore +35 -35
  38. package/template/lib/package.json +30 -30
  39. package/template/lib/packages/test/.gitignore +35 -35
  40. package/template/lib/packages/test/package.json +13 -13
  41. package/template/lib/packages/test/src/index.ts +5 -5
  42. package/template/lib/packages/test/tsconfig.json +17 -17
  43. package/template/lib/pnpm-lock.yaml +2386 -2386
  44. package/template/lib/pnpm-workspace.yaml +2 -2
  45. package/template/nest/.eslintrc.js +25 -25
  46. package/template/nest/.gitignore +34 -34
  47. package/template/nest/.husky/pre-commit +4 -4
  48. package/template/nest/.prettierrc +6 -6
  49. package/template/nest/README.md +73 -73
  50. package/template/nest/nest-cli.json +5 -5
  51. package/template/nest/package.json +28 -28
  52. package/template/nest/src/app.controller.spec.ts +22 -22
  53. package/template/nest/src/app.controller.ts +12 -12
  54. package/template/nest/src/app.module.ts +10 -10
  55. package/template/nest/src/app.service.ts +8 -8
  56. package/template/nest/src/main.ts +10 -10
  57. package/template/nest/src/utils/transform.interceptor.ts +26 -26
  58. package/template/nest/test/app.e2e-spec.ts +24 -24
  59. package/template/nest/test/jest-e2e.json +9 -9
  60. package/template/nest/tsconfig.build.json +5 -5
  61. package/template/nest/tsconfig.json +21 -21
  62. package/template/react/.eslintrc +52 -47
  63. package/template/react/.gitignore +25 -25
  64. package/template/react/.husky/commit-msg +4 -4
  65. package/template/react/.husky/pre-commit +4 -4
  66. package/template/react/.prettierignore +4 -4
  67. package/template/react/.prettierrc +18 -18
  68. package/template/react/.stylelintrc +22 -22
  69. package/template/react/README.md +13 -13
  70. package/template/react/commitlint.config.cjs +1 -1
  71. package/template/react/index.html +13 -13
  72. package/template/react/jest.config.cjs +55 -55
  73. package/template/react/jest.setup.ts +5 -5
  74. package/template/react/postcss.config.cjs +9 -9
  75. package/template/react/stats.html +4044 -4044
  76. package/template/react/tailwind.config.cjs +8 -8
  77. package/template/react/tsconfig.json +25 -25
  78. package/template/react/tsconfig.node.json +9 -9
  79. package/template/react/vite.config.ts +19 -14
  80. package/template/vue/.eslintrc +6 -1
  81. package/template/vue/.gitignore +25 -25
  82. package/template/vue/.husky/commit-msg +4 -4
  83. package/template/vue/.husky/pre-commit +4 -4
  84. package/template/vue/.prettierignore +4 -4
  85. package/template/vue/.prettierrc +18 -18
  86. package/template/vue/.stylelintrc +22 -22
  87. package/template/vue/README.md +12 -12
  88. package/template/vue/commitlint.config.cjs +1 -1
  89. package/template/vue/index.html +13 -13
  90. package/template/vue/postcss.config.cjs +9 -9
  91. package/template/vue/src/app/app.store.ts +2 -8
  92. package/template/vue/src/providers/index.ts +1 -0
  93. package/template/vue/src/providers/renderToDom.ts +16 -0
  94. package/template/vue/tailwind.config.cjs +8 -8
  95. package/template/vue/tsconfig.json +22 -22
  96. package/template/vue/tsconfig.node.json +9 -9
  97. package/template/vue/vite.config.ts +19 -14
  98. package/template/nest/.husky/_/.gitignore +0 -1
  99. package/template/react/.husky/_/.gitignore +0 -1
  100. package/template/react/.vscode/extensions.json +0 -8
  101. package/template/vue/.husky/_/.gitignore +0 -1
  102. package/template/vue/.vscode/extensions.json +0 -9

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.