@blockquote-web-components/blockquote-controller-rxjs 1.4.7 → 1.4.9
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 +39 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-controller-rxjs",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.9",
|
|
4
4
|
"description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -35,29 +35,26 @@
|
|
|
35
35
|
"dev:vite": "vite build",
|
|
36
36
|
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
|
|
37
37
|
"format:eslint": "eslint . --fix",
|
|
38
|
-
"format:prettier": "prettier \"**/*.{js,ts,
|
|
39
|
-
"format:stylelint": "stylelint \"
|
|
38
|
+
"format:prettier": "prettier \"**/*.{js,ts,css,scss,html,json}\" --write --ignore-path .prettierignore",
|
|
39
|
+
"format:stylelint": "stylelint \"{demo,src}/**/*.{js,ts,css,scss,html}\" --fix --ignore-path .prettierignore",
|
|
40
40
|
"postinstall": "npm run sort:package",
|
|
41
|
-
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
|
|
42
|
-
"lint:eslint": "eslint .",
|
|
43
|
-
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
|
|
44
|
-
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
|
|
45
41
|
"preview:vite": "vite preview",
|
|
46
42
|
"sass:watch": "sass-style-template",
|
|
47
43
|
"sort:package": "npx sort-package-json",
|
|
48
|
-
"start": "concurrently -k -r \"npm:
|
|
44
|
+
"start": "concurrently -k -r \"npm:vite\" \"npm:sass:watch\"",
|
|
49
45
|
"test": "vitest --run --browser.headless",
|
|
50
46
|
"test:watch": "vitest",
|
|
51
47
|
"vite": "vite"
|
|
52
48
|
},
|
|
53
49
|
"lint-staged": {
|
|
54
50
|
"**/*.{js,ts,html}": [
|
|
55
|
-
"npm run format
|
|
51
|
+
"npm run format"
|
|
56
52
|
],
|
|
57
|
-
"**/*.
|
|
53
|
+
"**/*.json": [
|
|
58
54
|
"npm run format:prettier"
|
|
59
55
|
],
|
|
60
56
|
"**/*.{scss,css}": [
|
|
57
|
+
"npm run format:prettier",
|
|
61
58
|
"npm run format:stylelint"
|
|
62
59
|
]
|
|
63
60
|
},
|
|
@@ -72,32 +69,58 @@
|
|
|
72
69
|
{
|
|
73
70
|
"files": "*.{scss,css}",
|
|
74
71
|
"options": {
|
|
75
|
-
"printWidth": 280,
|
|
76
72
|
"singleQuote": false
|
|
77
73
|
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"files": "*.json",
|
|
77
|
+
"options": {
|
|
78
|
+
"parser": "json-stringify"
|
|
79
|
+
}
|
|
78
80
|
}
|
|
79
81
|
]
|
|
80
82
|
},
|
|
81
83
|
"stylelint": {
|
|
82
84
|
"extends": "stylelint-config-standard-scss",
|
|
85
|
+
"allowEmptyInput": true,
|
|
83
86
|
"rules": {
|
|
84
87
|
"custom-property-pattern": null,
|
|
85
88
|
"no-duplicate-selectors": null,
|
|
86
89
|
"color-function-notation": null,
|
|
87
|
-
"alpha-value-notation": null
|
|
88
|
-
|
|
90
|
+
"alpha-value-notation": null,
|
|
91
|
+
"media-feature-name-no-unknown": null,
|
|
92
|
+
"comment-empty-line-before": null,
|
|
93
|
+
"declaration-empty-line-before": null,
|
|
94
|
+
"property-no-vendor-prefix": null,
|
|
95
|
+
"selector-attribute-quotes": null,
|
|
96
|
+
"value-no-vendor-prefix": null
|
|
97
|
+
},
|
|
98
|
+
"overrides": [
|
|
99
|
+
{
|
|
100
|
+
"files": [
|
|
101
|
+
"**/*.html"
|
|
102
|
+
],
|
|
103
|
+
"customSyntax": "postcss-html"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"files": [
|
|
107
|
+
"**/*.{ts,js}"
|
|
108
|
+
],
|
|
109
|
+
"customSyntax": "postcss-lit"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
89
112
|
},
|
|
90
113
|
"dependencies": {
|
|
91
114
|
"lit": "^3.2.1",
|
|
92
115
|
"rxjs": "^8.0.0-alpha.14"
|
|
93
116
|
},
|
|
94
117
|
"devDependencies": {
|
|
95
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.11.
|
|
96
|
-
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.12.
|
|
118
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.11.2",
|
|
119
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.12.9"
|
|
97
120
|
},
|
|
98
121
|
"publishConfig": {
|
|
99
122
|
"access": "public"
|
|
100
123
|
},
|
|
101
124
|
"customElements": "custom-elements.json",
|
|
102
|
-
"gitHead": "
|
|
125
|
+
"gitHead": "9a325725a904f541664565dd720f4bb6b2f0fa05"
|
|
103
126
|
}
|