kubit-forge 0.0.1-canary.85d379a
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/CHANGELOG.md +229 -0
- package/LICENSE +201 -0
- package/README.md +841 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +14294 -0
- package/dist/cli.js.map +1 -0
- package/dist/index.d.ts +772 -0
- package/dist/index.js +1979 -0
- package/dist/index.js.map +1 -0
- package/dist/templates/README.md +243 -0
- package/dist/templates/config/README.md +94 -0
- package/dist/templates/config/config-templates.ts +138 -0
- package/dist/templates/config/defaults.ts +105 -0
- package/dist/templates/config/index.ts +6 -0
- package/dist/templates/features/.prettierignore.template +28 -0
- package/dist/templates/features/.prettierrc.template +10 -0
- package/dist/templates/features/README.md +111 -0
- package/dist/templates/features/bernova-foundations.ts.template +50 -0
- package/dist/templates/features/bernova-globalStyles.ts.template +33 -0
- package/dist/templates/features/bernova-mediaQueries.ts.template +6 -0
- package/dist/templates/features/bernova-theme.ts.template +1 -0
- package/dist/templates/features/bernova.config.json.template +58 -0
- package/dist/templates/features/changesets-config.json.template +11 -0
- package/dist/templates/features/changesets-readme.md.template +31 -0
- package/dist/templates/features/commitlint.config.js.template +23 -0
- package/dist/templates/features/cypress-support-commands.ts.template +22 -0
- package/dist/templates/features/cypress-support-e2e.ts.template +20 -0
- package/dist/templates/features/cypress.config.ts.template +23 -0
- package/dist/templates/features/eslint.config.js.template +13 -0
- package/dist/templates/features/husky-commit-msg.template +4 -0
- package/dist/templates/features/husky-pre-commit.template +4 -0
- package/dist/templates/features/index.ts +5 -0
- package/dist/templates/features/jest-setup.ts.template +1 -0
- package/dist/templates/features/jest.config.ts.template +23 -0
- package/dist/templates/features/lint-staged.config.js.template +5 -0
- package/dist/templates/features/playwright-example.spec.ts.template +14 -0
- package/dist/templates/features/playwright.config.ts.template +42 -0
- package/dist/templates/features/template-loader.ts +31 -0
- package/dist/templates/features/vitest-setup.ts.template +1 -0
- package/dist/templates/features/vitest.config.ts.template +11 -0
- package/dist/templates/generators/README.md +181 -0
- package/dist/templates/generators/index.ts +9 -0
- package/dist/templates/generators/plugin.ts +245 -0
- package/dist/templates/generators/react-app-bernova.ts +356 -0
- package/dist/templates/generators/react-component.ts +103 -0
- package/dist/templates/generators/react-hook.ts +56 -0
- package/dist/templates/generators/react-kubit-ui.ts +794 -0
- package/dist/templates/generators/react-page.ts +65 -0
- package/dist/templates-physical/kubit-full/.prettierrc +0 -0
- package/dist/templates-physical/kubit-full/README.md +223 -0
- package/dist/templates-physical/kubit-full/bernova.config.json +0 -0
- package/dist/templates-physical/kubit-full/eslint.config.js +0 -0
- package/dist/templates-physical/kubit-full/index.html +17 -0
- package/dist/templates-physical/kubit-full/package.json +53 -0
- package/dist/templates-physical/kubit-full/src/App.css +118 -0
- package/dist/templates-physical/kubit-full/src/App.tsx +75 -0
- package/dist/templates-physical/kubit-full/src/charts/ChartsShowcase.css +0 -0
- package/dist/templates-physical/kubit-full/src/charts/ChartsShowcase.tsx +0 -0
- package/dist/templates-physical/kubit-full/src/components/ComponentsShowcase.css +147 -0
- package/dist/templates-physical/kubit-full/src/components/ComponentsShowcase.tsx +0 -0
- package/dist/templates-physical/kubit-full/src/main.tsx +0 -0
- package/dist/templates-physical/kubit-full/src/styles/index.css +6 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/components/button.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/components/card.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/components/input.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/foundations.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/globalStyles.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/mediaQueries.ts +0 -0
- package/dist/templates-physical/kubit-full/src/styles/theme/theme.ts +0 -0
- package/dist/templates-physical/kubit-full/src/test/setup.ts +0 -0
- package/dist/templates-physical/kubit-full/tsconfig.json +29 -0
- package/dist/templates-physical/kubit-full/tsconfig.node.json +11 -0
- package/dist/templates-physical/kubit-full/vite.config.ts +24 -0
- package/dist/templates-physical/kubit-full/vitest.config.ts +26 -0
- package/dist/templates-physical/react/.env.example +6 -0
- package/dist/templates-physical/react/.prettierrc +8 -0
- package/dist/templates-physical/react/README.md +81 -0
- package/dist/templates-physical/react/eslint.config.js +7 -0
- package/dist/templates-physical/react/index.html +13 -0
- package/dist/templates-physical/react/package.json +39 -0
- package/dist/templates-physical/react/src/app/App.module.css +39 -0
- package/dist/templates-physical/react/src/app/App.test.tsx +14 -0
- package/dist/templates-physical/react/src/app/App.tsx +17 -0
- package/dist/templates-physical/react/src/main.tsx +10 -0
- package/dist/templates-physical/react/src/styles/index.css +39 -0
- package/dist/templates-physical/react/src/test/setup.ts +57 -0
- package/dist/templates-physical/react/tsconfig.json +25 -0
- package/dist/templates-physical/react/tsconfig.node.json +10 -0
- package/dist/templates-physical/react/vite.config.ts +16 -0
- package/dist/templates-physical/react/vitest.config.ts +22 -0
- package/dist/templates-physical/react-bernova/.eslintrc.cjs +15 -0
- package/dist/templates-physical/react-bernova/.prettierrc +10 -0
- package/dist/templates-physical/react-bernova/README.md +150 -0
- package/dist/templates-physical/react-bernova/bernova.config.json +58 -0
- package/dist/templates-physical/react-bernova/eslint.config.js +7 -0
- package/dist/templates-physical/react-bernova/index.html +21 -0
- package/dist/templates-physical/react-bernova/package.json +43 -0
- package/dist/templates-physical/react-bernova/src/App.css +89 -0
- package/dist/templates-physical/react-bernova/src/App.tsx +51 -0
- package/dist/templates-physical/react-bernova/src/index.css +54 -0
- package/dist/templates-physical/react-bernova/src/main.tsx +10 -0
- package/dist/templates-physical/react-bernova/src/styles/foundations.ts +91 -0
- package/dist/templates-physical/react-bernova/src/styles/globalStyles.ts +118 -0
- package/dist/templates-physical/react-bernova/src/styles/mediaQueries.ts +18 -0
- package/dist/templates-physical/react-bernova/src/styles/theme.ts +94 -0
- package/dist/templates-physical/react-bernova/src/test/setup.ts +9 -0
- package/dist/templates-physical/react-bernova/tsconfig.json +31 -0
- package/dist/templates-physical/react-bernova/tsconfig.node.json +10 -0
- package/dist/templates-physical/react-bernova/vite.config.ts +20 -0
- package/dist/templates-physical/react-bernova/vitest.config.ts +18 -0
- package/dist/templates-physical/vanilla/.env.example +6 -0
- package/dist/templates-physical/vanilla/.prettierrc +8 -0
- package/dist/templates-physical/vanilla/README.md +76 -0
- package/dist/templates-physical/vanilla/eslint.config.js +7 -0
- package/dist/templates-physical/vanilla/index.html +13 -0
- package/dist/templates-physical/vanilla/package.json +28 -0
- package/dist/templates-physical/vanilla/src/app.module.css +39 -0
- package/dist/templates-physical/vanilla/src/app.test.ts +20 -0
- package/dist/templates-physical/vanilla/src/app.ts +31 -0
- package/dist/templates-physical/vanilla/src/main.ts +9 -0
- package/dist/templates-physical/vanilla/src/styles/main.css +39 -0
- package/dist/templates-physical/vanilla/tsconfig.json +23 -0
- package/dist/templates-physical/vanilla/vite.config.ts +14 -0
- package/dist/templates-physical/vanilla/vitest.config.ts +14 -0
- package/package.json +131 -0
- package/templates/kubit-full/.prettierrc +0 -0
- package/templates/kubit-full/README.md +223 -0
- package/templates/kubit-full/bernova.config.json +0 -0
- package/templates/kubit-full/eslint.config.js +0 -0
- package/templates/kubit-full/index.html +17 -0
- package/templates/kubit-full/package.json +53 -0
- package/templates/kubit-full/src/App.css +118 -0
- package/templates/kubit-full/src/App.tsx +75 -0
- package/templates/kubit-full/src/charts/ChartsShowcase.css +0 -0
- package/templates/kubit-full/src/charts/ChartsShowcase.tsx +0 -0
- package/templates/kubit-full/src/components/ComponentsShowcase.css +147 -0
- package/templates/kubit-full/src/components/ComponentsShowcase.tsx +0 -0
- package/templates/kubit-full/src/main.tsx +0 -0
- package/templates/kubit-full/src/styles/index.css +6 -0
- package/templates/kubit-full/src/styles/theme/components/button.ts +0 -0
- package/templates/kubit-full/src/styles/theme/components/card.ts +0 -0
- package/templates/kubit-full/src/styles/theme/components/input.ts +0 -0
- package/templates/kubit-full/src/styles/theme/foundations.ts +0 -0
- package/templates/kubit-full/src/styles/theme/globalStyles.ts +0 -0
- package/templates/kubit-full/src/styles/theme/mediaQueries.ts +0 -0
- package/templates/kubit-full/src/styles/theme/theme.ts +0 -0
- package/templates/kubit-full/src/test/setup.ts +0 -0
- package/templates/kubit-full/tsconfig.json +29 -0
- package/templates/kubit-full/tsconfig.node.json +11 -0
- package/templates/kubit-full/vite.config.ts +24 -0
- package/templates/kubit-full/vitest.config.ts +26 -0
- package/templates/react/.env.example +6 -0
- package/templates/react/.prettierrc +8 -0
- package/templates/react/README.md +81 -0
- package/templates/react/eslint.config.js +7 -0
- package/templates/react/index.html +13 -0
- package/templates/react/package.json +39 -0
- package/templates/react/src/app/App.module.css +39 -0
- package/templates/react/src/app/App.test.tsx +14 -0
- package/templates/react/src/app/App.tsx +17 -0
- package/templates/react/src/main.tsx +10 -0
- package/templates/react/src/styles/index.css +39 -0
- package/templates/react/src/test/setup.ts +57 -0
- package/templates/react/tsconfig.json +25 -0
- package/templates/react/tsconfig.node.json +10 -0
- package/templates/react/vite.config.ts +16 -0
- package/templates/react/vitest.config.ts +22 -0
- package/templates/react-bernova/.eslintrc.cjs +15 -0
- package/templates/react-bernova/.prettierrc +10 -0
- package/templates/react-bernova/README.md +150 -0
- package/templates/react-bernova/bernova.config.json +58 -0
- package/templates/react-bernova/eslint.config.js +7 -0
- package/templates/react-bernova/index.html +21 -0
- package/templates/react-bernova/package.json +43 -0
- package/templates/react-bernova/src/App.css +89 -0
- package/templates/react-bernova/src/App.tsx +51 -0
- package/templates/react-bernova/src/index.css +54 -0
- package/templates/react-bernova/src/main.tsx +10 -0
- package/templates/react-bernova/src/styles/foundations.ts +91 -0
- package/templates/react-bernova/src/styles/globalStyles.ts +118 -0
- package/templates/react-bernova/src/styles/mediaQueries.ts +18 -0
- package/templates/react-bernova/src/styles/theme.ts +94 -0
- package/templates/react-bernova/src/test/setup.ts +9 -0
- package/templates/react-bernova/tsconfig.json +31 -0
- package/templates/react-bernova/tsconfig.node.json +10 -0
- package/templates/react-bernova/vite.config.ts +20 -0
- package/templates/react-bernova/vitest.config.ts +18 -0
- package/templates/vanilla/.env.example +6 -0
- package/templates/vanilla/.prettierrc +8 -0
- package/templates/vanilla/README.md +76 -0
- package/templates/vanilla/eslint.config.js +7 -0
- package/templates/vanilla/index.html +13 -0
- package/templates/vanilla/package.json +28 -0
- package/templates/vanilla/src/app.module.css +39 -0
- package/templates/vanilla/src/app.test.ts +20 -0
- package/templates/vanilla/src/app.ts +31 -0
- package/templates/vanilla/src/main.ts +9 -0
- package/templates/vanilla/src/styles/main.css +39 -0
- package/templates/vanilla/tsconfig.json +23 -0
- package/templates/vanilla/vite.config.ts +14 -0
- package/templates/vanilla/vitest.config.ts +14 -0
package/dist/cli.d.ts
ADDED