diff --git a/.changeset/rotten-planes-yawn.md b/.changeset/rotten-planes-yawn.md new file mode 100644 index 00000000..10624a41 --- /dev/null +++ b/.changeset/rotten-planes-yawn.md @@ -0,0 +1,5 @@ +--- +'@srcbook/api': patch +--- + +Include templates in published app and remove unused template diff --git a/packages/api/apps/templates/react-javascript/eslint.config.js b/packages/api/apps/templates/react-javascript/eslint.config.js deleted file mode 100644 index 238d2e4e..00000000 --- a/packages/api/apps/templates/react-javascript/eslint.config.js +++ /dev/null @@ -1,38 +0,0 @@ -import js from '@eslint/js' -import globals from 'globals' -import react from 'eslint-plugin-react' -import reactHooks from 'eslint-plugin-react-hooks' -import reactRefresh from 'eslint-plugin-react-refresh' - -export default [ - { ignores: ['dist'] }, - { - files: ['**/*.{js,jsx}'], - languageOptions: { - ecmaVersion: 2020, - globals: globals.browser, - parserOptions: { - ecmaVersion: 'latest', - ecmaFeatures: { jsx: true }, - sourceType: 'module', - }, - }, - settings: { react: { version: '18.3' } }, - plugins: { - react, - 'react-hooks': reactHooks, - 'react-refresh': reactRefresh, - }, - rules: { - ...js.configs.recommended.rules, - ...react.configs.recommended.rules, - ...react.configs['jsx-runtime'].rules, - ...reactHooks.configs.recommended.rules, - 'react/jsx-no-target-blank': 'off', - 'react-refresh/only-export-components': [ - 'warn', - { allowConstantExport: true }, - ], - }, - }, -] diff --git a/packages/api/apps/templates/react-javascript/index.html b/packages/api/apps/templates/react-javascript/index.html deleted file mode 100644 index 0c589ecc..00000000 --- a/packages/api/apps/templates/react-javascript/index.html +++ /dev/null @@ -1,13 +0,0 @@ - - -
- - - -
- Edit src/App.jsx
and save to test HMR
-
- Click on the Vite and React logos to learn more -
- > - ) -} - -export default App diff --git a/packages/api/apps/templates/react-javascript/src/assets/react.svg b/packages/api/apps/templates/react-javascript/src/assets/react.svg deleted file mode 100644 index 6c87de9b..00000000 --- a/packages/api/apps/templates/react-javascript/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/packages/api/apps/templates/react-javascript/src/index.css b/packages/api/apps/templates/react-javascript/src/index.css deleted file mode 100644 index 6119ad9a..00000000 --- a/packages/api/apps/templates/react-javascript/src/index.css +++ /dev/null @@ -1,68 +0,0 @@ -:root { - font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; - line-height: 1.5; - font-weight: 400; - - color-scheme: light dark; - color: rgba(255, 255, 255, 0.87); - background-color: #242424; - - font-synthesis: none; - text-rendering: optimizeLegibility; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -a { - font-weight: 500; - color: #646cff; - text-decoration: inherit; -} -a:hover { - color: #535bf2; -} - -body { - margin: 0; - display: flex; - place-items: center; - min-width: 320px; - min-height: 100vh; -} - -h1 { - font-size: 3.2em; - line-height: 1.1; -} - -button { - border-radius: 8px; - border: 1px solid transparent; - padding: 0.6em 1.2em; - font-size: 1em; - font-weight: 500; - font-family: inherit; - background-color: #1a1a1a; - cursor: pointer; - transition: border-color 0.25s; -} -button:hover { - border-color: #646cff; -} -button:focus, -button:focus-visible { - outline: 4px auto -webkit-focus-ring-color; -} - -@media (prefers-color-scheme: light) { - :root { - color: #213547; - background-color: #ffffff; - } - a:hover { - color: #747bff; - } - button { - background-color: #f9f9f9; - } -} diff --git a/packages/api/apps/templates/react-javascript/src/main.jsx b/packages/api/apps/templates/react-javascript/src/main.jsx deleted file mode 100644 index 89f91e54..00000000 --- a/packages/api/apps/templates/react-javascript/src/main.jsx +++ /dev/null @@ -1,10 +0,0 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import App from './App.jsx' -import './index.css' - -createRoot(document.getElementById('root')).render( -