@blockquote-web-components/blockquote-base-meta 1.4.0 → 1.4.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.
Files changed (1) hide show
  1. package/package.json +12 -64
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-base-meta",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Webcomponent blockquote-base-meta 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 \"**/*.{js,ts,html}\" --fix --ignore-path .eslintignore",
41
- "format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .eslintignore",
42
- "format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .eslintignore",
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 \"**/*.{js,ts,html}\" --ignore-path .eslintignore",
46
- "lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .eslintignore",
47
- "lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .eslintignore",
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,60 +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
- "import/extensions": [
111
- "error",
112
- "always",
113
- {
114
- "ignorePackages": true
115
- }
116
- ],
117
- "import/no-extraneous-dependencies": [
118
- "error",
119
- {
120
- "devDependencies": [
121
- "**/test/**/*.{js,ts}",
122
- "**/*.config.{js,ts,mjs,cjs}",
123
- "**/*.conf.{js,ts,mjs,cjs}"
124
- ]
125
- }
126
- ],
127
- "import/no-unresolved": "off",
128
- "import/prefer-default-export": "off",
129
- "lit/no-classfield-shadowing": "off",
130
- "lit/no-native-attributes": "off"
131
- },
132
- "globals": {
133
- "globalThis": "readonly"
134
- }
135
- },
136
84
  "stylelint": {
137
85
  "extends": "stylelint-config-standard-scss",
138
86
  "rules": {
@@ -146,12 +94,12 @@
146
94
  "lit": "^3.1.1"
147
95
  },
148
96
  "devDependencies": {
149
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.8.0",
150
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.0"
97
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
98
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.2"
151
99
  },
152
100
  "publishConfig": {
153
101
  "access": "public"
154
102
  },
155
103
  "customElements": "custom-elements.json",
156
- "gitHead": "4e3daa3414a4aa6eaf6cc0d792d3b86fa6fbb36b"
104
+ "gitHead": "7edc86cd16ada68f0d940336b43bfc9ba9389b0a"
157
105
  }