sv 0.6.0 → 0.6.2
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/dist/_commonjsHelpers-n7_cr1vO.js +694 -0
- package/dist/_commonjsHelpers-n7_cr1vO.js.map +1 -0
- package/dist/bin.js +506 -44158
- package/dist/bin.js.map +1 -1
- package/dist/index.js +75 -1
- package/dist/index.js.map +1 -1
- package/dist/lib/index.d.ts +3 -0
- package/dist/lib/install.d.ts +14 -0
- package/dist/lib/testing.d.ts +31 -0
- package/dist/processor-SieBGHed.js +43144 -0
- package/dist/processor-SieBGHed.js.map +1 -0
- package/dist/shared.json +8 -0
- package/dist/testing.js +15581 -0
- package/dist/testing.js.map +1 -0
- package/package.json +12 -4
- package/dist/index-A89HFWzv.js +0 -137
- package/dist/index-A89HFWzv.js.map +0 -1
- package/dist/index.d.ts +0 -2
package/dist/shared.json
CHANGED
|
@@ -30,6 +30,14 @@
|
|
|
30
30
|
"exclude": [],
|
|
31
31
|
"contents": "# create-svelte\n\nEverything you need to build a Svelte library, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).\n\nRead more about creating a library [in the docs](https://svelte.dev/docs/kit/packaging).\n\n## Creating a project\n\nIf you're seeing this, you've probably already done this step. Congrats!\n\n```bash\n# create a new project in the current directory\nnpx sv create\n\n# create a new project in my-app\nnpx sv create my-app\n```\n\n## Developing\n\nOnce you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:\n\n```bash\nnpm run dev\n\n# or start the server and open the app in a new browser tab\nnpm run dev -- --open\n```\n\nEverything inside `src/lib` is part of your library, everything inside `src/routes` can be used as a showcase or preview app.\n\n## Building\n\nTo build your library:\n\n```bash\nnpm run package\n```\n\nTo create a production version of your showcase app:\n\n```bash\nnpm run build\n```\n\nYou can preview the production build with `npm run preview`.\n\n> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.\n\n## Publishing\n\nGo into the `package.json` and give your package the desired name through the `\"name\"` option. Also consider adding a `\"license\"` field and point it to a `LICENSE` file which you can create from a template (one popular option is the [MIT license](https://opensource.org/license/mit/)).\n\nTo publish your library to [npm](https://www.npmjs.com):\n\n```bash\nnpm publish\n```\n"
|
|
32
32
|
},
|
|
33
|
+
{
|
|
34
|
+
"name": "jsconfig.json",
|
|
35
|
+
"include": [
|
|
36
|
+
"none"
|
|
37
|
+
],
|
|
38
|
+
"exclude": [],
|
|
39
|
+
"contents": "{\n\t\"extends\": \"./.svelte-kit/tsconfig.json\",\n\t\"compilerOptions\": {\n\t\t\"allowJs\": true,\n\t\t\"checkJs\": false,\n\t\t\"moduleResolution\": \"bundler\"\n\t}\n\t// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias\n\t// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files\n\t//\n\t// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes\n\t// from the referenced tsconfig.json - TypeScript does not merge them in\n}\n"
|
|
40
|
+
},
|
|
33
41
|
{
|
|
34
42
|
"name": "package.json",
|
|
35
43
|
"include": [
|