This commit is contained in:
Elgius 2023-04-06 14:21:56 +05:00
parent 54f76891d3
commit 72dd414d27
22 changed files with 25 additions and 4 deletions

View File

@ -11,3 +11,4 @@ node_modules
pnpm-lock.yaml pnpm-lock.yaml
package-lock.json package-lock.json
yarn.lock yarn.lock

View File

@ -13,3 +13,4 @@ module.exports = {
node: true node: true
} }
}; };

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ node_modules
!.env.example !.env.example
vite.config.js.timestamp-* vite.config.js.timestamp-*
vite.config.ts.timestamp-* vite.config.ts.timestamp-*

1
.npmrc
View File

@ -1 +1,2 @@
engine-strict=true engine-strict=true

View File

@ -11,3 +11,4 @@ node_modules
pnpm-lock.yaml pnpm-lock.yaml
package-lock.json package-lock.json
yarn.lock yarn.lock

View File

@ -7,3 +7,4 @@
"pluginSearchDirs": ["."], "pluginSearchDirs": ["."],
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
} }

View File

@ -36,3 +36,4 @@ npm run build
You can preview the production build with `npm run preview`. You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. > To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

1
package-lock.json generated
View File

@ -1,4 +1,5 @@
{ {
"name": "myapp", "name": "myapp",
"version": "0.0.1", "version": "0.0.1",
"lockfileVersion": 2, "lockfileVersion": 2,

View File

@ -34,3 +34,5 @@
"react-icons": "^4.8.0" "react-icons": "^4.8.0"
} }
} }

View File

@ -8,3 +8,5 @@ const config = {
}; };
export default config; export default config;

View File

@ -4,3 +4,4 @@ export default {
autoprefixer: {}, autoprefixer: {},
}, },
} }

View File

@ -1,3 +1,3 @@
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;

View File

@ -10,3 +10,4 @@
<div style="display: contents">%sveltekit.body%</div> <div style="display: contents">%sveltekit.body%</div>
</body> </body>
</html> </html>

View File

@ -5,3 +5,4 @@ describe('sum test', () => {
expect(1 + 2).toBe(3); expect(1 + 2).toBe(3);
}); });
}); });

View File

@ -2,4 +2,4 @@
import "../app.css"; import "../app.css";
</script> </script>
<slot /> <slot />

View File

@ -27,3 +27,5 @@
2. decide font 2. decide font
3. work on padding and Margins 3. work on padding and Margins
--> -->
<!-- Path: Fishie-Honesty-UI\src\routes\+page.svelte -->

View File

@ -2,4 +2,4 @@
import '../app.css' import '../app.css'
</script> </script>
<slot /> <slot />

View File

@ -13,4 +13,4 @@
<h1 class="title"> <h1 class="title">
hello page 1 hello page 1
</h1> </h1>
</div> </div>

View File

@ -13,3 +13,4 @@ const config = {
}; };
export default config; export default config;

View File

@ -7,3 +7,4 @@ export default {
plugins: [require('daisyui')], plugins: [require('daisyui')],
} }

View File

@ -4,3 +4,4 @@ test('index page has expected h1', async ({ page }) => {
await page.goto('/'); await page.goto('/');
await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible(); await expect(page.getByRole('heading', { name: 'Welcome to SvelteKit' })).toBeVisible();
}); });

View File

@ -7,3 +7,4 @@ export default defineConfig({
include: ['src/**/*.{test,spec}.{js,ts}'] include: ['src/**/*.{test,spec}.{js,ts}']
} }
}); });