@kong/icons 0.0.2-pr.1.2cd5a2b.0 → 0.0.2-pr.1.3582091.0
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/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kong/icons",
|
3
|
-
"version": "0.0.2-pr.1.
|
3
|
+
"version": "0.0.2-pr.1.3582091.0",
|
4
4
|
"description": "Kong Icon Library",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"type": "module",
|
@@ -23,21 +23,22 @@
|
|
23
23
|
"access": "public"
|
24
24
|
},
|
25
25
|
"scripts": {
|
26
|
-
"build": "yarn stylelint && yarn lint && yarn build:components",
|
27
|
-
"build:components": "rimraf ./dist && yarn generate && yarn typecheck && vite build && rimraf ./dist/style.css && vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly && tsc-alias -p './tsconfig.build.json'",
|
26
|
+
"build": "rimraf './src/components' && yarn stylelint && yarn lint && yarn build:components",
|
27
|
+
"build:components": "rimraf './dist' && yarn generate && yarn typecheck && vite build && rimraf ./dist/style.css && vue-tsc -p './tsconfig.build.json' --emitDeclarationOnly && tsc-alias -p './tsconfig.build.json'",
|
28
28
|
"build:visualize": "BUILD_VISUALIZER=true rimraf ./dist && yarn generate && vite build -m production",
|
29
|
-
"generate": "ts-node -P './scripts/tsconfig.json' './scripts/generate
|
30
|
-
"update:component-list": "ts-node -P './scripts/tsconfig.json'
|
29
|
+
"generate": "ts-node -P './scripts/tsconfig.json' './scripts/generate.ts' && yarn fix:generated",
|
30
|
+
"update:component-list": "ts-node -P './scripts/tsconfig.json' && yarn fix:generated",
|
31
31
|
"dev": "USE_SANDBOX=true vite",
|
32
32
|
"test": "FORCE_COLOR=1 vitest run",
|
33
33
|
"test:open": "vitest --ui",
|
34
34
|
"typecheck": "vue-tsc -p './tsconfig.build.json' --noEmit",
|
35
35
|
"lint": "eslint '**/*.{js,ts,vue}'",
|
36
36
|
"lint:fix": "eslint '**/*.{js,ts,vue}' --fix",
|
37
|
-
"lint:fix:generated": "eslint './src/components/*.vue' './src/generated-component-list.ts' --fix",
|
37
|
+
"lint:fix:generated": "eslint './src/components/*.vue' './src/component-list.ts' './src/temp-generated-component-list.ts' --fix",
|
38
38
|
"stylelint": "stylelint './src/**/*.{css,scss,vue}'",
|
39
39
|
"stylelint:fix": "stylelint './src/**/*.{css,scss,vue}' --fix",
|
40
40
|
"stylelint:fix:generated": "stylelint './src/components/*.vue' --fix",
|
41
|
+
"fix:generated": "yarn lint:fix:generated && yarn stylelint:fix:generated",
|
41
42
|
"semantic-release": "semantic-release",
|
42
43
|
"commit": "cz"
|
43
44
|
},
|