@blockquote-web-components/blockquote-base-style-helpers 1.3.1 → 1.3.2
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 +14 -66
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-base-style-helpers",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Webcomponent blockquote-base-style-helpers following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"build": "echo \"This is not a TypeScript project, so no need to build.\"",
|
|
44
44
|
"dev:vite": "vite build",
|
|
45
45
|
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
|
|
46
|
-
"format:eslint": "eslint
|
|
47
|
-
"format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .
|
|
48
|
-
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .
|
|
46
|
+
"format:eslint": "eslint . --fix",
|
|
47
|
+
"format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .prettierignore",
|
|
48
|
+
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .prettierignore",
|
|
49
49
|
"postinstall": "npm run sort:package",
|
|
50
50
|
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
|
|
51
|
-
"lint:eslint": "eslint
|
|
52
|
-
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .
|
|
53
|
-
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .
|
|
51
|
+
"lint:eslint": "eslint .",
|
|
52
|
+
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
|
|
53
|
+
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
|
|
54
54
|
"preview:vite": "vite preview",
|
|
55
55
|
"sass:watch": "sass-style-template",
|
|
56
56
|
"sort:package": "npx sort-package-json",
|
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
},
|
|
73
73
|
"prettier": {
|
|
74
74
|
"arrowParens": "avoid",
|
|
75
|
+
"bracketSameLine": true,
|
|
76
|
+
"htmlWhitespaceSensitivity": "ignore",
|
|
75
77
|
"printWidth": 100,
|
|
76
78
|
"singleQuote": true,
|
|
77
79
|
"trailingComma": "all",
|
|
@@ -85,61 +87,6 @@
|
|
|
85
87
|
}
|
|
86
88
|
]
|
|
87
89
|
},
|
|
88
|
-
"eslintConfig": {
|
|
89
|
-
"parserOptions": {
|
|
90
|
-
"ecmaVersion": "latest"
|
|
91
|
-
},
|
|
92
|
-
"extends": [
|
|
93
|
-
"@open-wc",
|
|
94
|
-
"prettier"
|
|
95
|
-
],
|
|
96
|
-
"rules": {
|
|
97
|
-
"class-methods-use-this": "off",
|
|
98
|
-
"indent": [
|
|
99
|
-
"error",
|
|
100
|
-
2,
|
|
101
|
-
{
|
|
102
|
-
"SwitchCase": 1,
|
|
103
|
-
"ignoredNodes": [
|
|
104
|
-
"PropertyDefinition",
|
|
105
|
-
"TemplateLiteral > *"
|
|
106
|
-
]
|
|
107
|
-
}
|
|
108
|
-
],
|
|
109
|
-
"no-unused-expressions": [
|
|
110
|
-
"error",
|
|
111
|
-
{
|
|
112
|
-
"allowShortCircuit": true,
|
|
113
|
-
"allowTernary": true
|
|
114
|
-
}
|
|
115
|
-
],
|
|
116
|
-
"object-curly-newline": "off",
|
|
117
|
-
"import/extensions": [
|
|
118
|
-
"error",
|
|
119
|
-
"always",
|
|
120
|
-
{
|
|
121
|
-
"ignorePackages": true
|
|
122
|
-
}
|
|
123
|
-
],
|
|
124
|
-
"import/no-extraneous-dependencies": [
|
|
125
|
-
"error",
|
|
126
|
-
{
|
|
127
|
-
"devDependencies": [
|
|
128
|
-
"**/test/**/*.{js,ts}",
|
|
129
|
-
"**/*.config.{js,ts,mjs,cjs}",
|
|
130
|
-
"**/*.conf.{js,ts,mjs,cjs}"
|
|
131
|
-
]
|
|
132
|
-
}
|
|
133
|
-
],
|
|
134
|
-
"import/no-unresolved": "off",
|
|
135
|
-
"import/prefer-default-export": "off",
|
|
136
|
-
"lit/no-classfield-shadowing": "off",
|
|
137
|
-
"lit/no-native-attributes": "off"
|
|
138
|
-
},
|
|
139
|
-
"globals": {
|
|
140
|
-
"globalThis": "readonly"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
90
|
"stylelint": {
|
|
144
91
|
"extends": "stylelint-config-standard-scss",
|
|
145
92
|
"rules": {
|
|
@@ -150,15 +97,16 @@
|
|
|
150
97
|
}
|
|
151
98
|
},
|
|
152
99
|
"dependencies": {
|
|
153
|
-
"@blockquote-web-components/blockquote-base-meta": "^1.4.
|
|
100
|
+
"@blockquote-web-components/blockquote-base-meta": "^1.4.2"
|
|
154
101
|
},
|
|
155
102
|
"devDependencies": {
|
|
156
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.
|
|
157
|
-
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.
|
|
103
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
|
|
104
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.2",
|
|
158
105
|
"lit": "^3.1.1"
|
|
159
106
|
},
|
|
160
107
|
"publishConfig": {
|
|
161
108
|
"access": "public"
|
|
162
109
|
},
|
|
163
|
-
"customElements": "custom-elements.json"
|
|
110
|
+
"customElements": "custom-elements.json",
|
|
111
|
+
"gitHead": "7edc86cd16ada68f0d940336b43bfc9ba9389b0a"
|
|
164
112
|
}
|