@hashrytech/quick-components-kit 0.1.0 → 0.1.1

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/CHANGELOG.md +7 -0
  2. package/package.json +10 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # quick-components-kit
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Moving changeset to dev dependency
8
+ - Testing publish config update
9
+
3
10
  ## 0.1.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@hashrytech/quick-components-kit",
3
3
  "description": "A Svelte component library and toolset",
4
- "version": "0.1.0",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/hashrytech/quick-components-kit.git"
7
+ },
8
+ "version": "0.1.1",
5
9
  "license": "MIT",
6
10
  "author": "Hashry Tech",
7
11
  "scripts": {
@@ -33,7 +37,9 @@
33
37
  "**/*.css"
34
38
  ],
35
39
  "publishConfig": {
36
- "access": "public"
40
+ "access": "public",
41
+ "devDependencies": {},
42
+ "scripts": {}
37
43
  },
38
44
  "svelte": "./dist/index.js",
39
45
  "types": "./dist/index.d.ts",
@@ -48,6 +54,7 @@
48
54
  "svelte": "^5.0.0"
49
55
  },
50
56
  "devDependencies": {
57
+ "@changesets/cli": "^2.29.4",
51
58
  "@chromatic-com/storybook": "^4.0.0",
52
59
  "@eslint/compat": "^1.2.9",
53
60
  "@eslint/js": "^9.27.0",
@@ -90,8 +97,5 @@
90
97
  },
91
98
  "keywords": [
92
99
  "svelte"
93
- ],
94
- "dependencies": {
95
- "@changesets/cli": "^2.29.4"
96
- }
100
+ ]
97
101
  }