@blockquote-web-components/blockquote-directive-ariaidref-slot 1.1.0 → 1.1.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 -63
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-directive-ariaidref-slot",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "This directive creates a slot element, hidden by default, with a specific name and id",
5
5
  "keywords": [
6
6
  "lit",
@@ -41,14 +41,14 @@
41
41
  "build": "echo \"This is not a TypeScript project, so no need to build.\"",
42
42
  "dev:vite": "vite build",
43
43
  "format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
44
- "format:eslint": "eslint \"**/*.{js,ts,html}\" --fix --ignore-path .eslintignore",
45
- "format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .eslintignore",
46
- "format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .eslintignore",
44
+ "format:eslint": "eslint . --fix",
45
+ "format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .prettierignore",
46
+ "format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .prettierignore",
47
47
  "postinstall": "npm run sort:package",
48
48
  "lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
49
- "lint:eslint": "eslint \"**/*.{js,ts,html}\" --ignore-path .eslintignore",
50
- "lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .eslintignore",
51
- "lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .eslintignore",
49
+ "lint:eslint": "eslint .",
50
+ "lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
51
+ "lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
52
52
  "prepare": "husky",
53
53
  "preview:vite": "vite preview",
54
54
  "sass:watch": "sass-style-template",
@@ -71,6 +71,8 @@
71
71
  },
72
72
  "prettier": {
73
73
  "arrowParens": "avoid",
74
+ "bracketSameLine": true,
75
+ "htmlWhitespaceSensitivity": "ignore",
74
76
  "printWidth": 100,
75
77
  "singleQuote": true,
76
78
  "trailingComma": "all",
@@ -84,59 +86,6 @@
84
86
  }
85
87
  ]
86
88
  },
87
- "eslintConfig": {
88
- "parserOptions": {
89
- "ecmaVersion": "latest"
90
- },
91
- "extends": [
92
- "@open-wc",
93
- "prettier"
94
- ],
95
- "rules": {
96
- "class-methods-use-this": "off",
97
- "indent": [
98
- "error",
99
- 2,
100
- {
101
- "SwitchCase": 1,
102
- "ignoredNodes": [
103
- "PropertyDefinition",
104
- "TemplateLiteral > CallExpression"
105
- ]
106
- }
107
- ],
108
- "no-unused-expressions": [
109
- "error",
110
- {
111
- "allowShortCircuit": true,
112
- "allowTernary": true
113
- }
114
- ],
115
- "object-curly-newline": "off",
116
- "import/extensions": [
117
- "error",
118
- "always",
119
- {
120
- "ignorePackages": true
121
- }
122
- ],
123
- "import/no-extraneous-dependencies": [
124
- "error",
125
- {
126
- "devDependencies": [
127
- "**/test/**/*.{js,ts}",
128
- "**/*.config.{js,ts,mjs,cjs}",
129
- "**/*.conf.{js,ts,mjs,cjs}"
130
- ]
131
- }
132
- ],
133
- "import/no-unresolved": "off",
134
- "import/prefer-default-export": "off",
135
- "lit-a11y/click-events-have-key-events": "off",
136
- "lit/no-classfield-shadowing": "off",
137
- "lit/no-native-attributes": "off"
138
- }
139
- },
140
89
  "stylelint": {
141
90
  "extends": "stylelint-config-standard-scss",
142
91
  "rules": {
@@ -150,11 +99,12 @@
150
99
  "lit": "^3.1.1"
151
100
  },
152
101
  "devDependencies": {
153
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.0",
154
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.1"
102
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
103
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.3"
155
104
  },
156
105
  "publishConfig": {
157
106
  "access": "public"
158
107
  },
159
- "customElements": "custom-elements.json"
108
+ "customElements": "custom-elements.json",
109
+ "gitHead": "7e8105d41361bd4c4507b545f85a93b8e09529d9"
160
110
  }