@blockquote-web-components/blockquote-controller-context-meta 1.0.1 → 1.0.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 +13 -62
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-controller-context-meta",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Webcomponent blockquote-controller-context-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
  "prepare": "husky",
49
49
  "preview:vite": "vite preview",
50
50
  "sass:watch": "sass-style-template",
@@ -67,6 +67,8 @@
67
67
  },
68
68
  "prettier": {
69
69
  "arrowParens": "avoid",
70
+ "bracketSameLine": true,
71
+ "htmlWhitespaceSensitivity": "ignore",
70
72
  "printWidth": 100,
71
73
  "singleQuote": true,
72
74
  "trailingComma": "all",
@@ -80,58 +82,6 @@
80
82
  }
81
83
  ]
82
84
  },
83
- "eslintConfig": {
84
- "parserOptions": {
85
- "ecmaVersion": "latest"
86
- },
87
- "extends": [
88
- "@open-wc",
89
- "prettier"
90
- ],
91
- "rules": {
92
- "class-methods-use-this": "off",
93
- "indent": [
94
- "error",
95
- 2,
96
- {
97
- "SwitchCase": 1,
98
- "ignoredNodes": [
99
- "PropertyDefinition",
100
- "TemplateLiteral > CallExpression"
101
- ]
102
- }
103
- ],
104
- "no-unused-expressions": [
105
- "error",
106
- {
107
- "allowShortCircuit": true,
108
- "allowTernary": true
109
- }
110
- ],
111
- "object-curly-newline": "off",
112
- "import/extensions": [
113
- "error",
114
- "always",
115
- {
116
- "ignorePackages": true
117
- }
118
- ],
119
- "import/no-extraneous-dependencies": [
120
- "error",
121
- {
122
- "devDependencies": [
123
- "**/test/**/*.{js,ts}",
124
- "**/*.config.{js,ts,mjs,cjs}",
125
- "**/*.conf.{js,ts,mjs,cjs}"
126
- ]
127
- }
128
- ],
129
- "import/no-unresolved": "off",
130
- "import/prefer-default-export": "off",
131
- "lit/no-classfield-shadowing": "off",
132
- "lit/no-native-attributes": "off"
133
- }
134
- },
135
85
  "stylelint": {
136
86
  "extends": "stylelint-config-standard-scss",
137
87
  "rules": {
@@ -146,11 +96,12 @@
146
96
  "lit": "^3.1.2"
147
97
  },
148
98
  "devDependencies": {
149
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.0",
150
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.1"
99
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
100
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.2"
151
101
  },
152
102
  "publishConfig": {
153
103
  "access": "public"
154
104
  },
155
- "customElements": "custom-elements.json"
105
+ "customElements": "custom-elements.json",
106
+ "gitHead": "7edc86cd16ada68f0d940336b43bfc9ba9389b0a"
156
107
  }