@blockquote-web-components/blockquote-controller-rxjs 1.3.0 → 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 +12 -62
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-controller-rxjs",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Webcomponent blockquote-controller-rxjs following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"build": "echo \"This is not a TypeScript project, so no need to build.\"",
|
|
38
38
|
"dev:vite": "vite build",
|
|
39
39
|
"format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
|
|
40
|
-
"format:eslint": "eslint
|
|
41
|
-
"format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .
|
|
42
|
-
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .
|
|
40
|
+
"format:eslint": "eslint . --fix",
|
|
41
|
+
"format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .prettierignore",
|
|
42
|
+
"format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .prettierignore",
|
|
43
43
|
"postinstall": "npm run sort:package",
|
|
44
44
|
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
|
|
45
|
-
"lint:eslint": "eslint
|
|
46
|
-
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .
|
|
47
|
-
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .
|
|
45
|
+
"lint:eslint": "eslint .",
|
|
46
|
+
"lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
|
|
47
|
+
"lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
|
|
48
48
|
"preview:vite": "vite preview",
|
|
49
49
|
"sass:watch": "sass-style-template",
|
|
50
50
|
"sort:package": "npx sort-package-json",
|
|
@@ -66,6 +66,8 @@
|
|
|
66
66
|
},
|
|
67
67
|
"prettier": {
|
|
68
68
|
"arrowParens": "avoid",
|
|
69
|
+
"bracketSameLine": true,
|
|
70
|
+
"htmlWhitespaceSensitivity": "ignore",
|
|
69
71
|
"printWidth": 100,
|
|
70
72
|
"singleQuote": true,
|
|
71
73
|
"trailingComma": "all",
|
|
@@ -79,58 +81,6 @@
|
|
|
79
81
|
}
|
|
80
82
|
]
|
|
81
83
|
},
|
|
82
|
-
"eslintConfig": {
|
|
83
|
-
"parserOptions": {
|
|
84
|
-
"ecmaVersion": "latest"
|
|
85
|
-
},
|
|
86
|
-
"extends": [
|
|
87
|
-
"@open-wc",
|
|
88
|
-
"prettier"
|
|
89
|
-
],
|
|
90
|
-
"rules": {
|
|
91
|
-
"class-methods-use-this": "off",
|
|
92
|
-
"indent": [
|
|
93
|
-
"error",
|
|
94
|
-
2,
|
|
95
|
-
{
|
|
96
|
-
"SwitchCase": 1,
|
|
97
|
-
"ignoredNodes": [
|
|
98
|
-
"PropertyDefinition",
|
|
99
|
-
"TemplateLiteral > *"
|
|
100
|
-
]
|
|
101
|
-
}
|
|
102
|
-
],
|
|
103
|
-
"no-unused-expressions": [
|
|
104
|
-
"error",
|
|
105
|
-
{
|
|
106
|
-
"allowShortCircuit": true,
|
|
107
|
-
"allowTernary": true
|
|
108
|
-
}
|
|
109
|
-
],
|
|
110
|
-
"object-curly-newline": "off",
|
|
111
|
-
"import/extensions": [
|
|
112
|
-
"error",
|
|
113
|
-
"always",
|
|
114
|
-
{
|
|
115
|
-
"ignorePackages": true
|
|
116
|
-
}
|
|
117
|
-
],
|
|
118
|
-
"import/no-extraneous-dependencies": [
|
|
119
|
-
"error",
|
|
120
|
-
{
|
|
121
|
-
"devDependencies": [
|
|
122
|
-
"**/test/**/*.{js,ts}",
|
|
123
|
-
"**/*.config.{js,ts,mjs,cjs}",
|
|
124
|
-
"**/*.conf.{js,ts,mjs,cjs}"
|
|
125
|
-
]
|
|
126
|
-
}
|
|
127
|
-
],
|
|
128
|
-
"import/no-unresolved": "off",
|
|
129
|
-
"import/prefer-default-export": "off",
|
|
130
|
-
"lit/no-classfield-shadowing": "off",
|
|
131
|
-
"lit/no-native-attributes": "off"
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
84
|
"stylelint": {
|
|
135
85
|
"extends": "stylelint-config-standard-scss",
|
|
136
86
|
"rules": {
|
|
@@ -145,12 +95,12 @@
|
|
|
145
95
|
"rxjs": "^8.0.0-alpha.14"
|
|
146
96
|
},
|
|
147
97
|
"devDependencies": {
|
|
148
|
-
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.
|
|
149
|
-
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.
|
|
98
|
+
"@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
|
|
99
|
+
"@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.2"
|
|
150
100
|
},
|
|
151
101
|
"publishConfig": {
|
|
152
102
|
"access": "public"
|
|
153
103
|
},
|
|
154
104
|
"customElements": "custom-elements.json",
|
|
155
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "7edc86cd16ada68f0d940336b43bfc9ba9389b0a"
|
|
156
106
|
}
|