cclkit4svelte 0.1.1-c → 0.1.1-d

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/svelte.config.js +0 -21
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "cclkit4svelte",
3
- "version": "0.1.1-c",
3
+ "version": "0.1.1-d",
4
4
  "author": "reiji1020 <sk@reiji1020.info>",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
+ "main": "./dist/index.js",
8
+ "files": [
9
+ "dist"
10
+ ],
7
11
  "repository": "https://github.com/reiji1020/ccl-component-kit4svelte.git",
8
12
  "bugs": {
9
13
  "url": "https://github.com/reiji1020/ccl-component-kit4svelte/issues"
@@ -23,16 +27,12 @@
23
27
  "storybook": "storybook dev -p 6006",
24
28
  "build-storybook": "storybook build -o ./public/storybook"
25
29
  },
26
- "files": [
27
- "dist"
28
- ],
29
30
  "exports": {
30
31
  ".": {
31
32
  "types": "./dist/index.d.ts",
32
33
  "svelte": "./dist/index.js"
33
34
  }
34
35
  },
35
- "main": "svelte.config.js",
36
36
  "devDependencies": {
37
37
  "@storybook/addon-actions": "^7.6.10",
38
38
  "@storybook/addon-essentials": "^7.6.3",
package/svelte.config.js DELETED
@@ -1,21 +0,0 @@
1
- import adapter from '@sveltejs/adapter-auto';
2
- import { vitePreprocess } from '@sveltejs/kit/vite';
3
-
4
- /** @type {import('@sveltejs/kit').Config} */
5
- const config = {
6
- // Consult https://kit.svelte.dev/docs/integrations#preprocessors
7
- // for more information about preprocessors
8
- preprocess: vitePreprocess(),
9
-
10
- kit: {
11
- // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
12
- // If your environment is not supported or you settled on a specific environment, switch out the adapter.
13
- // See https://kit.svelte.dev/docs/adapters for more information about adapters.
14
- adapter: adapter(),
15
- alias: {
16
- 'cclkit4svelte': 'src/lib'
17
- }
18
- }
19
- };
20
-
21
- export default config;