cic-kit 0.0.6 → 0.0.7

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/dist/index.d.ts +3 -0
  2. package/package.json +4 -4
@@ -0,0 +1,3 @@
1
+ import "./styles/main.scss";
2
+ export { default as AccordionCmp } from "./cmp/Accordion/AccordionCmp.vue";
3
+ export { default as BtnCmp } from "./cmp/Btn/BtnCmp.vue";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cic-kit",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -27,10 +27,10 @@
27
27
  "./dist/cic-kit.css"
28
28
  ],
29
29
  "scripts": {
30
- "build": "vue-tsc --noEmit && vite build",
31
30
  "build:types": "tsc -p tsconfig.build.json",
32
- "deploy": "npm run build && npm run build:types && node ./script/bumpVersion.js && npm pack && node ./script/gitPush.js",
33
- "start": "npm run build && npm run build:types && npm pack"
31
+ "build": "vue-tsc --noEmit && vite build && npm run build:types",
32
+ "deploy": "npm run build && node ./script/bumpVersion.js && npm pack && node ./script/gitPush.js",
33
+ "start": "npm run build && npm pack"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "vue": "^3.3.0",