@jahia/create-module 0.0.9 → 0.5.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.
- package/LICENSE +1 -1
- package/README.md +4 -3
- package/babel.config.cjs +2 -5
- package/index.js +95 -87
- package/node/node +0 -0
- package/node/npm +65 -0
- package/node/npm.cmd +20 -0
- package/node/npx +65 -0
- package/node/npx.cmd +20 -0
- package/node/yarn/dist/LICENSE +26 -0
- package/node/yarn/dist/README.md +60 -0
- package/node/yarn/dist/bin/yarn +35 -0
- package/node/yarn/dist/bin/yarn.cmd +2 -0
- package/node/yarn/dist/bin/yarn.js +31 -0
- package/node/yarn/dist/bin/yarnpkg +2 -0
- package/node/yarn/dist/bin/yarnpkg.cmd +2 -0
- package/node/yarn/dist/lib/cli.js +154071 -0
- package/node/yarn/dist/lib/v8-compile-cache.js +351 -0
- package/node/yarn/dist/package.json +28 -0
- package/node/yarn/dist/preinstall.js +60 -0
- package/package.json +21 -24
- package/pom.xml +134 -0
- package/sync-version.js +16 -0
- package/template/README.md +19 -11
- package/template/dotgithub/workflows/build.yml +21 -0
- package/template/dotgitignore +3 -9
- package/template/dotidea/jsLinters/eslint.xml +6 -0
- package/template/dotidea/prettier.xml +7 -0
- package/template/dotprettierignore +1 -0
- package/template/dotvscode/settings.json +11 -0
- package/template/dotyarnrc.yml +1 -0
- package/template/eslint.config.js +25 -0
- package/template/package.json +41 -43
- package/template/prettier.config.js +9 -0
- package/template/settings/README.md +3 -1
- package/template/settings/import.xml +5 -1
- package/template/settings/locales/de.json +2 -2
- package/template/settings/locales/en.json +3 -3
- package/template/settings/locales/fr.json +2 -2
- package/template/src/client/index.jsx +1 -5
- package/template/src/server/templates/page/PageHome.tsx +43 -0
- package/template/src/server/views/simpleContent/SimpleContentDefault.tsx +16 -0
- package/template/static/css/styles.css +7 -7
- package/template/tsconfig.json +27 -0
- package/template/vite.config.mjs +33 -0
- package/tests/create-templatesSet-project.test.js +126 -113
- package/.eslintrc.cjs +0 -28
- package/.github/ISSUE_TEMPLATE/bug.yml +0 -45
- package/.github/ISSUE_TEMPLATE/config.yml +0 -8
- package/.github/ISSUE_TEMPLATE/epic.md +0 -26
- package/.github/ISSUE_TEMPLATE/other.md +0 -8
- package/.github/ISSUE_TEMPLATE/release.md +0 -64
- package/.github/ISSUE_TEMPLATE/spike.md +0 -19
- package/.github/ISSUE_TEMPLATE/story.md +0 -27
- package/.github/ISSUE_TEMPLATE/support.yml +0 -40
- package/.github/ISSUE_TEMPLATE/tech-day.md +0 -93
- package/.github/dependabot.yml +0 -15
- package/.github/release.yml +0 -24
- package/.github/workflows/delivery-issue-chores.yml +0 -12
- package/.github/workflows/on-code-change.yml +0 -50
- package/.github/workflows/publish-release.yml +0 -22
- package/.yarn/releases/yarn-4.6.0.cjs +0 -934
- package/.yarnrc.yml +0 -3
- package/template/.babelrc +0 -9
- package/template/.yarn/releases/yarn-4.3.1.cjs +0 -894
- package/template/.yarnrc.yml +0 -3
- package/template/doteslintrc.cjs +0 -30
- package/template/dotnpmignore +0 -10
- package/template/src/server/components/index.js +0 -1
- package/template/src/server/index.js +0 -6
- package/template/src/server/templates/index.js +0 -1
- package/template/src/server/templates/page/PageHome.jsx +0 -32
- package/template/src/server/templates/page/index.js +0 -1
- package/template/src/server/views/index.js +0 -1
- package/template/src/server/views/simpleContent/SimpleContentDefault.jsx +0 -19
- package/template/src/server/views/simpleContent/index.js +0 -1
- package/template/webpack.config.js +0 -225
package/.yarnrc.yml
DELETED