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
package-lock.json
yarn.lock

View File

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

1
.gitignore vendored
View File

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

1
.npmrc
View File

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

View File

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

View File

@ -7,3 +7,4 @@
"pluginSearchDirs": ["."],
"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`.
> 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",
"version": "0.0.1",
"lockfileVersion": 2,

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,3 +4,4 @@ test('index page has expected h1', async ({ page }) => {
await page.goto('/');
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}']
}
});