create-stencil-components 1.0.6 → 1.0.8
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/templates/base/package.json +11 -11
- package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-angular/package.json +9 -2
- package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json +10 -10
- package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-react/package.json +5 -5
- package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-react/tsconfig.json +5 -1
- package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-vue/package.json +4 -4
- package/dist/templates/variants/angular/packages/components-{{PROJECT_NAME_KEBAB}}-angular/package.json +9 -2
- package/dist/templates/variants/angular/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json +10 -10
- package/dist/templates/variants/react/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json +10 -10
- package/dist/templates/variants/react/packages/components-{{PROJECT_NAME_KEBAB}}-react/package.json +5 -5
- package/dist/templates/variants/react/packages/components-{{PROJECT_NAME_KEBAB}}-react/tsconfig.json +5 -1
- package/dist/templates/variants/vue/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json +10 -10
- package/dist/templates/variants/vue/packages/components-{{PROJECT_NAME_KEBAB}}-vue/package.json +4 -4
- package/dist/templates/variants/web-components/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json +10 -10
- package/package.json +61 -61
|
@@ -13,28 +13,28 @@
|
|
|
13
13
|
"prepare": "node .husky/install.mjs"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@commitlint/cli": "20.
|
|
17
|
-
"@commitlint/config-conventional": "20.
|
|
18
|
-
"@eslint/js": "
|
|
19
|
-
"@nx/js": "22.
|
|
20
|
-
"eslint": "
|
|
16
|
+
"@commitlint/cli": "20.5.0",
|
|
17
|
+
"@commitlint/config-conventional": "20.5.0",
|
|
18
|
+
"@eslint/js": "10.0.1",
|
|
19
|
+
"@nx/js": "22.6.4",
|
|
20
|
+
"eslint": "10.2.0",
|
|
21
21
|
"eslint-config-prettier": "10.1.8",
|
|
22
22
|
"eslint-plugin-prettier": "5.5.5",
|
|
23
|
-
"eslint-plugin-sonarjs": "
|
|
23
|
+
"eslint-plugin-sonarjs": "4.0.2",
|
|
24
24
|
"husky": "9.1.7",
|
|
25
|
-
"nx": "22.
|
|
25
|
+
"nx": "22.6.4",
|
|
26
26
|
"rimraf": "6.1.3",
|
|
27
|
-
"stylelint": "17.
|
|
27
|
+
"stylelint": "17.6.0",
|
|
28
28
|
"stylelint-config-standard": "40.0.0",
|
|
29
29
|
"stylelint-config-standard-scss": "17.0.0",
|
|
30
30
|
"stylelint-use-logical": "2.1.3",
|
|
31
31
|
"ts-node": "10.9.2",
|
|
32
|
-
"typescript": "
|
|
33
|
-
"typescript-eslint": "8.
|
|
32
|
+
"typescript": "6.0.2",
|
|
33
|
+
"typescript-eslint": "8.58.0"
|
|
34
34
|
},
|
|
35
35
|
"nx": {},
|
|
36
36
|
"volta": {
|
|
37
|
-
"node": "25.
|
|
37
|
+
"node": "25.5.0"
|
|
38
38
|
},
|
|
39
39
|
"workspaces": [
|
|
40
40
|
"packages/*"
|
package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-angular/package.json
CHANGED
|
@@ -9,7 +9,14 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"clean": "rimraf --glob dist src/directives/generated standalone/src/directives/generated",
|
|
12
|
-
"build": "ng-packagr -p ng-package.json -c tsconfig.json"
|
|
12
|
+
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
|
|
13
|
+
"format": "echo 'No format specified' && exit 0",
|
|
14
|
+
"format:fix": "echo 'No format:fix specified' && exit 0",
|
|
15
|
+
"lint:eslint": "echo 'No lint:eslint specified' && exit 0",
|
|
16
|
+
"lint:stylelint": "echo 'No lint:stylelint specified' && exit 0",
|
|
17
|
+
"lint:eslint:fix": "echo 'No lint:eslint:fix specified' && exit 0",
|
|
18
|
+
"lint:stylelint:fix": "echo 'No lint:stylelint:fix specified' && exit 0",
|
|
19
|
+
"test": "echo 'No tests specified' && exit 0"
|
|
13
20
|
},
|
|
14
21
|
"dependencies": {
|
|
15
22
|
"tslib": "2.8.1"
|
|
@@ -21,7 +28,7 @@
|
|
|
21
28
|
"rxjs": ">=7.8.2"
|
|
22
29
|
},
|
|
23
30
|
"devDependencies": {
|
|
24
|
-
"ng-packagr": "21.
|
|
31
|
+
"ng-packagr": "21.2.2"
|
|
25
32
|
},
|
|
26
33
|
"license": "MIT"
|
|
27
34
|
}
|
package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json
CHANGED
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf --glob coverage dist .stencil",
|
|
54
54
|
"build": "stencil build --ci",
|
|
55
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
56
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
55
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
56
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
57
57
|
"generate": "stencil generate",
|
|
58
58
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
59
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
59
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
60
60
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
61
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
61
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
62
62
|
"server:dev": "stencil build --dev --watch --serve --no-open --ci",
|
|
63
63
|
"test": "stencil test --spec --coverage --no-cache",
|
|
64
64
|
"test:e2e": "stencil test --e2e",
|
|
@@ -69,16 +69,16 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@stencil/angular-output-target": "1.3.0",
|
|
72
|
-
"@stencil/core": "4.43.
|
|
72
|
+
"@stencil/core": "4.43.3",
|
|
73
73
|
"@stencil/react-output-target": "1.4.2",
|
|
74
74
|
"@stencil/sass": "3.2.3",
|
|
75
75
|
"@stencil/vue-output-target": "0.13.1",
|
|
76
76
|
"@types/jest": "30.0.0",
|
|
77
|
-
"@types/node": "25.
|
|
78
|
-
"jest": "30.
|
|
79
|
-
"jest-cli": "30.
|
|
80
|
-
"puppeteer": "24.
|
|
81
|
-
"sass": "1.
|
|
77
|
+
"@types/node": "25.5.2",
|
|
78
|
+
"jest": "30.3.0",
|
|
79
|
+
"jest-cli": "30.3.0",
|
|
80
|
+
"puppeteer": "24.40.0",
|
|
81
|
+
"sass": "1.99.0",
|
|
82
82
|
"stencil-inline-svg": "1.1.0"
|
|
83
83
|
},
|
|
84
84
|
"license": "MIT"
|
package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-react/package.json
CHANGED
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rimraf --glob dist src/components/generated",
|
|
25
25
|
"build": "tsc",
|
|
26
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
27
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
26
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
27
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
28
28
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
29
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
29
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
30
30
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
31
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
31
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
32
32
|
"test": "echo 'No tests specified' && exit 0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"react": ">=18"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "25.
|
|
43
|
+
"@types/node": "25.5.2",
|
|
44
44
|
"@types/react": ">=18"
|
|
45
45
|
},
|
|
46
46
|
"license": "MIT",
|
package/dist/templates/variants/all/packages/components-{{PROJECT_NAME_KEBAB}}-vue/package.json
CHANGED
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rimraf --glob dist src/components/generated",
|
|
25
25
|
"build": "tsc",
|
|
26
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
27
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
26
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
27
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
28
28
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
29
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
29
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
30
30
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
31
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
31
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
32
32
|
"test": "echo 'No tests specified' && exit 0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
@@ -9,7 +9,14 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"clean": "rimraf --glob dist src/directives/generated standalone/src/directives/generated",
|
|
12
|
-
"build": "ng-packagr -p ng-package.json -c tsconfig.json"
|
|
12
|
+
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
|
|
13
|
+
"format": "echo 'No format specified' && exit 0",
|
|
14
|
+
"format:fix": "echo 'No format:fix specified' && exit 0",
|
|
15
|
+
"lint:eslint": "echo 'No lint:eslint specified' && exit 0",
|
|
16
|
+
"lint:stylelint": "echo 'No lint:stylelint specified' && exit 0",
|
|
17
|
+
"lint:eslint:fix": "echo 'No lint:eslint:fix specified' && exit 0",
|
|
18
|
+
"lint:stylelint:fix": "echo 'No lint:stylelint:fix specified' && exit 0",
|
|
19
|
+
"test": "echo 'No tests specified' && exit 0"
|
|
13
20
|
},
|
|
14
21
|
"dependencies": {
|
|
15
22
|
"tslib": "2.8.1"
|
|
@@ -21,7 +28,7 @@
|
|
|
21
28
|
"rxjs": ">=7.8.2"
|
|
22
29
|
},
|
|
23
30
|
"devDependencies": {
|
|
24
|
-
"ng-packagr": "21.
|
|
31
|
+
"ng-packagr": "21.2.2"
|
|
25
32
|
},
|
|
26
33
|
"license": "MIT"
|
|
27
34
|
}
|
package/dist/templates/variants/angular/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json
CHANGED
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf --glob coverage dist .stencil",
|
|
54
54
|
"build": "stencil build --ci",
|
|
55
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
56
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
55
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
56
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
57
57
|
"generate": "stencil generate",
|
|
58
58
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
59
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
59
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
60
60
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
61
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
61
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
62
62
|
"server:dev": "stencil build --dev --watch --serve --no-open --ci",
|
|
63
63
|
"test": "stencil test --spec --coverage --no-cache",
|
|
64
64
|
"test:e2e": "stencil test --e2e",
|
|
@@ -69,14 +69,14 @@
|
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
71
|
"@stencil/angular-output-target": "1.3.0",
|
|
72
|
-
"@stencil/core": "4.43.
|
|
72
|
+
"@stencil/core": "4.43.3",
|
|
73
73
|
"@stencil/sass": "3.2.3",
|
|
74
74
|
"@types/jest": "30.0.0",
|
|
75
|
-
"@types/node": "25.
|
|
76
|
-
"jest": "30.
|
|
77
|
-
"jest-cli": "30.
|
|
78
|
-
"puppeteer": "24.
|
|
79
|
-
"sass": "1.
|
|
75
|
+
"@types/node": "25.5.2",
|
|
76
|
+
"jest": "30.3.0",
|
|
77
|
+
"jest-cli": "30.3.0",
|
|
78
|
+
"puppeteer": "24.40.0",
|
|
79
|
+
"sass": "1.99.0",
|
|
80
80
|
"stencil-inline-svg": "1.1.0"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT"
|
package/dist/templates/variants/react/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json
CHANGED
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf --glob coverage dist .stencil",
|
|
54
54
|
"build": "stencil build --ci",
|
|
55
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
56
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
55
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
56
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
57
57
|
"generate": "stencil generate",
|
|
58
58
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
59
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
59
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
60
60
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
61
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
61
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
62
62
|
"server:dev": "stencil build --dev --watch --serve --no-open --ci",
|
|
63
63
|
"test": "stencil test --spec --coverage --no-cache",
|
|
64
64
|
"test:e2e": "stencil test --e2e",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
"tslib": "2.8.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@stencil/core": "4.43.
|
|
71
|
+
"@stencil/core": "4.43.3",
|
|
72
72
|
"@stencil/react-output-target": "1.4.2",
|
|
73
73
|
"@stencil/sass": "3.2.3",
|
|
74
74
|
"@types/jest": "30.0.0",
|
|
75
|
-
"@types/node": "25.
|
|
76
|
-
"jest": "30.
|
|
77
|
-
"jest-cli": "30.
|
|
78
|
-
"puppeteer": "24.
|
|
79
|
-
"sass": "1.
|
|
75
|
+
"@types/node": "25.5.2",
|
|
76
|
+
"jest": "30.3.0",
|
|
77
|
+
"jest-cli": "30.3.0",
|
|
78
|
+
"puppeteer": "24.40.0",
|
|
79
|
+
"sass": "1.99.0",
|
|
80
80
|
"stencil-inline-svg": "1.1.0"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT"
|
package/dist/templates/variants/react/packages/components-{{PROJECT_NAME_KEBAB}}-react/package.json
CHANGED
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rimraf --glob dist src/components/generated",
|
|
25
25
|
"build": "tsc",
|
|
26
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
27
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
26
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
27
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
28
28
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
29
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
29
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
30
30
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
31
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
31
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
32
32
|
"test": "echo 'No tests specified' && exit 0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"react": ">=18"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@types/node": "25.
|
|
43
|
+
"@types/node": "25.5.2",
|
|
44
44
|
"@types/react": ">=18"
|
|
45
45
|
},
|
|
46
46
|
"license": "MIT",
|
package/dist/templates/variants/vue/packages/components-{{PROJECT_NAME_KEBAB}}-core/package.json
CHANGED
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf --glob coverage dist .stencil",
|
|
54
54
|
"build": "stencil build --ci",
|
|
55
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
56
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
55
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
56
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
57
57
|
"generate": "stencil generate",
|
|
58
58
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
59
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
59
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
60
60
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
61
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
61
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
62
62
|
"server:dev": "stencil build --dev --watch --serve --no-open --ci",
|
|
63
63
|
"test": "stencil test --spec --coverage --no-cache",
|
|
64
64
|
"test:e2e": "stencil test --e2e",
|
|
@@ -68,15 +68,15 @@
|
|
|
68
68
|
"tslib": "2.8.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@stencil/core": "4.43.
|
|
71
|
+
"@stencil/core": "4.43.3",
|
|
72
72
|
"@stencil/sass": "3.2.3",
|
|
73
73
|
"@stencil/vue-output-target": "0.13.1",
|
|
74
74
|
"@types/jest": "30.0.0",
|
|
75
|
-
"@types/node": "25.
|
|
76
|
-
"jest": "30.
|
|
77
|
-
"jest-cli": "30.
|
|
78
|
-
"puppeteer": "24.
|
|
79
|
-
"sass": "1.
|
|
75
|
+
"@types/node": "25.5.2",
|
|
76
|
+
"jest": "30.3.0",
|
|
77
|
+
"jest-cli": "30.3.0",
|
|
78
|
+
"puppeteer": "24.40.0",
|
|
79
|
+
"sass": "1.99.0",
|
|
80
80
|
"stencil-inline-svg": "1.1.0"
|
|
81
81
|
},
|
|
82
82
|
"license": "MIT"
|
package/dist/templates/variants/vue/packages/components-{{PROJECT_NAME_KEBAB}}-vue/package.json
CHANGED
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rimraf --glob dist src/components/generated",
|
|
25
25
|
"build": "tsc",
|
|
26
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
27
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
26
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
27
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
28
28
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
29
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
29
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
30
30
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
31
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
31
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
32
32
|
"test": "echo 'No tests specified' && exit 0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"scripts": {
|
|
53
53
|
"clean": "rimraf --glob coverage dist .stencil",
|
|
54
54
|
"build": "stencil build --ci",
|
|
55
|
-
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
56
|
-
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore",
|
|
55
|
+
"format": "prettier src/**/*.{ts,tsx} --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
56
|
+
"format:fix": "prettier src/**/*.{ts,tsx} --write --check --config ../../prettier.config.mjs --ignore-path ../../.prettierignore --no-error-on-unmatched-pattern",
|
|
57
57
|
"generate": "stencil generate",
|
|
58
58
|
"lint:eslint": "eslint src --config ../../eslint.config.mjs",
|
|
59
|
-
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore",
|
|
59
|
+
"lint:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --allow-empty-input",
|
|
60
60
|
"lint:fix:eslint": "eslint src --config ../../eslint.config.mjs --fix",
|
|
61
|
-
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix",
|
|
61
|
+
"lint:fix:stylelint": "stylelint src/**/*.{css,scss} --config ../../stylelint.config.mjs --ignore-path ../../.stylelintignore --fix --allow-empty-input",
|
|
62
62
|
"server:dev": "stencil build --dev --watch --serve --no-open --ci",
|
|
63
63
|
"test": "stencil test --spec --coverage --no-cache",
|
|
64
64
|
"test:e2e": "stencil test --e2e",
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
"tslib": "2.8.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@stencil/core": "4.43.
|
|
71
|
+
"@stencil/core": "4.43.3",
|
|
72
72
|
"@stencil/sass": "3.2.3",
|
|
73
73
|
"@types/jest": "30.0.0",
|
|
74
|
-
"@types/node": "25.
|
|
75
|
-
"jest": "30.
|
|
76
|
-
"jest-cli": "30.
|
|
77
|
-
"puppeteer": "24.
|
|
78
|
-
"sass": "1.
|
|
74
|
+
"@types/node": "25.5.2",
|
|
75
|
+
"jest": "30.3.0",
|
|
76
|
+
"jest-cli": "30.3.0",
|
|
77
|
+
"puppeteer": "24.40.0",
|
|
78
|
+
"sass": "1.99.0",
|
|
79
79
|
"stencil-inline-svg": "1.1.0"
|
|
80
80
|
},
|
|
81
81
|
"license": "MIT"
|
package/package.json
CHANGED
|
@@ -1,62 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "create-stencil-components",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Create a stencil component library project using Nx, TypeScript, and SASS",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Jason Messmer <mezlight@gmail.com>",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/jmessmer/create-stencil-components.git"
|
|
10
|
-
},
|
|
11
|
-
"keywords": [
|
|
12
|
-
"create",
|
|
13
|
-
"scaffold",
|
|
14
|
-
"cli",
|
|
15
|
-
"generator",
|
|
16
|
-
"stencil",
|
|
17
|
-
"stenciljs",
|
|
18
|
-
"web components"
|
|
19
|
-
],
|
|
20
|
-
"bin": {
|
|
21
|
-
"create-stencil-components": "dist/index.mjs"
|
|
22
|
-
},
|
|
23
|
-
"type": "module",
|
|
24
|
-
"files": [
|
|
25
|
-
"dist"
|
|
26
|
-
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"clean": "rimraf dist",
|
|
29
|
-
"build": "npm run build:tsdown && npm run build:templates",
|
|
30
|
-
"build:tsc": "tsc",
|
|
31
|
-
"build:tsdown": "tsdown",
|
|
32
|
-
"build:templates": "node scripts/copy-templates.js",
|
|
33
|
-
"dev:tsc": "tsc --watch",
|
|
34
|
-
"dev:tsdown": "tsdown --watch",
|
|
35
|
-
"prepublishOnly": "npm run build",
|
|
36
|
-
"prepare": "node .husky/install.mjs"
|
|
37
|
-
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"@clack/prompts": "1.0
|
|
40
|
-
"commander": "14.0.3",
|
|
41
|
-
"fs-extra": "11.3.
|
|
42
|
-
"picocolors": "1.1.1",
|
|
43
|
-
"unique-names-generator": "4.7.1"
|
|
44
|
-
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"@commitlint/cli": "20.
|
|
47
|
-
"@commitlint/config-conventional": "20.
|
|
48
|
-
"@types/fs-extra": "11.0.4",
|
|
49
|
-
"@types/node": "25.
|
|
50
|
-
"@types/prompts": "2.4.9",
|
|
51
|
-
"rimraf": "6.1.3",
|
|
52
|
-
"tsdown": "0.
|
|
53
|
-
"typescript": "
|
|
54
|
-
},
|
|
55
|
-
"exports": {
|
|
56
|
-
".": "./dist/index.mjs",
|
|
57
|
-
"./package.json": "./package.json"
|
|
58
|
-
},
|
|
59
|
-
"volta": {
|
|
60
|
-
"node": "25.
|
|
61
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "create-stencil-components",
|
|
3
|
+
"version": "1.0.8",
|
|
4
|
+
"description": "Create a stencil component library project using Nx, TypeScript, and SASS",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Jason Messmer <mezlight@gmail.com>",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/jmessmer/create-stencil-components.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"create",
|
|
13
|
+
"scaffold",
|
|
14
|
+
"cli",
|
|
15
|
+
"generator",
|
|
16
|
+
"stencil",
|
|
17
|
+
"stenciljs",
|
|
18
|
+
"web components"
|
|
19
|
+
],
|
|
20
|
+
"bin": {
|
|
21
|
+
"create-stencil-components": "dist/index.mjs"
|
|
22
|
+
},
|
|
23
|
+
"type": "module",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"clean": "rimraf dist",
|
|
29
|
+
"build": "npm run build:tsdown && npm run build:templates",
|
|
30
|
+
"build:tsc": "tsc",
|
|
31
|
+
"build:tsdown": "tsdown",
|
|
32
|
+
"build:templates": "node scripts/copy-templates.js",
|
|
33
|
+
"dev:tsc": "tsc --watch",
|
|
34
|
+
"dev:tsdown": "tsdown --watch",
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
36
|
+
"prepare": "node .husky/install.mjs"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@clack/prompts": "1.2.0",
|
|
40
|
+
"commander": "14.0.3",
|
|
41
|
+
"fs-extra": "11.3.4",
|
|
42
|
+
"picocolors": "1.1.1",
|
|
43
|
+
"unique-names-generator": "4.7.1"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@commitlint/cli": "20.5.0",
|
|
47
|
+
"@commitlint/config-conventional": "20.5.0",
|
|
48
|
+
"@types/fs-extra": "11.0.4",
|
|
49
|
+
"@types/node": "25.5.2",
|
|
50
|
+
"@types/prompts": "2.4.9",
|
|
51
|
+
"rimraf": "6.1.3",
|
|
52
|
+
"tsdown": "0.21.7",
|
|
53
|
+
"typescript": "6.0.2"
|
|
54
|
+
},
|
|
55
|
+
"exports": {
|
|
56
|
+
".": "./dist/index.mjs",
|
|
57
|
+
"./package.json": "./package.json"
|
|
58
|
+
},
|
|
59
|
+
"volta": {
|
|
60
|
+
"node": "25.5.0"
|
|
61
|
+
}
|
|
62
62
|
}
|