create-chayns-app 1.1.5 → 1.1.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.
- package/.github/workflows/publish.yml +2 -2
- package/dist/index.js +8 -8
- package/package.json +14 -12
- package/templates/api-v5/page/src/components/App.jsx +9 -0
- package/templates/api-v5/page/src/index.html +19 -0
- package/templates/api-v5/page/src/index.jsx +17 -0
- package/templates/api-v5/page-module/src/components/App.jsx +30 -0
- package/templates/api-v5/page-module/src/components/AppWrapper.jsx +16 -0
- package/templates/api-v5/page-module/src/components/app.scss +3 -0
- package/templates/api-v5/page-module-redux/src/components/App.jsx +32 -0
- package/templates/api-v5/page-module-redux/src/components/AppWrapper.jsx +20 -0
- package/templates/api-v5/page-module-redux/src/components/app.scss +3 -0
- package/templates/api-v5/page-redux/src/components/App.jsx +7 -0
- package/templates/api-v5/page-redux/src/components/AppWrapper.jsx +17 -0
- package/templates/api-v5/page-redux/src/index.html +19 -0
- package/templates/api-v5/page-redux/src/index.jsx +15 -0
- package/templates/api-v5/page-ts/src/components/App.tsx +7 -0
- package/templates/api-v5/page-ts/src/index.html +19 -0
- package/templates/api-v5/page-ts/src/index.tsx +16 -0
- package/templates/api-v5/page-ts-module/src/components/App.tsx +30 -0
- package/templates/api-v5/page-ts-module/src/components/AppWrapper.tsx +16 -0
- package/templates/api-v5/page-ts-module/src/components/app.scss +3 -0
- package/templates/api-v5/page-ts-module-redux/src/components/App.tsx +31 -0
- package/templates/api-v5/page-ts-module-redux/src/components/AppWrapper.tsx +16 -0
- package/templates/api-v5/page-ts-module-redux/src/components/app.scss +3 -0
- package/templates/api-v5/page-ts-redux/src/components/App.tsx +7 -0
- package/templates/api-v5/page-ts-redux/src/components/AppWrapper.tsx +17 -0
- package/templates/api-v5/page-ts-redux/src/index.html +19 -0
- package/templates/api-v5/page-ts-redux/src/index.tsx +15 -0
- package/templates/api-v5/shared/js/src/redux-modules/counter/counterSelectors.js +3 -0
- package/templates/api-v5/shared/js/src/redux-modules/counter/counterSlice.js +23 -0
- package/templates/api-v5/shared/js/src/redux-modules/index.js +11 -0
- package/templates/api-v5/shared/js/template-package-redux.json +36 -0
- package/templates/api-v5/shared/js/template-package.json +34 -0
- package/templates/api-v5/shared/toolkit.config-module.js +9 -0
- package/templates/api-v5/shared/toolkit.config.js +5 -0
- package/templates/api-v5/shared/ts/src/redux-modules/counter/counterSelectors.ts +4 -0
- package/templates/api-v5/shared/ts/src/redux-modules/counter/counterSlice.ts +23 -0
- package/templates/api-v5/shared/ts/src/redux-modules/index.ts +14 -0
- package/templates/api-v5/shared/ts/template-package-redux.json +39 -0
- package/templates/api-v5/shared/ts/template-package.json +37 -0
- package/templates/api-v5/shared/ts/tsconfig.json +21 -0
- package/templates/page/src/index.html +1 -4
- package/templates/page/template-package.json +6 -5
- package/templates/shared/README.md +51 -0
- package/templates/shared/template-gitignore +31 -0