@blockquote-web-components/blockquote-controller-xstate 2.1.0 → 2.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 +12 -51
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockquote-web-components/blockquote-controller-xstate",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "This controller allows you to subscribe to an XState actor, updating a specified reactive property whenever the state machine transitions.",
5
5
  "keywords": [
6
6
  "lit",
@@ -39,14 +39,14 @@
39
39
  "build": "echo \"This is not a TypeScript project, so no need to build.\"",
40
40
  "dev:vite": "vite build",
41
41
  "format": "npm run format:eslint && npm run format:prettier && npm run format:stylelint",
42
- "format:eslint": "eslint \"**/*.{js,ts,html}\" --fix --ignore-path .eslintignore",
43
- "format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .eslintignore",
44
- "format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .eslintignore",
42
+ "format:eslint": "eslint . --fix",
43
+ "format:prettier": "prettier \"**/*.{js,ts,json,html}\" --write --ignore-path .prettierignore",
44
+ "format:stylelint": "stylelint \"**/*.{scss,css}\" --fix --allow-empty-input --ignore-path .prettierignore",
45
45
  "postinstall": "npm run sort:package",
46
46
  "lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:stylelint",
47
- "lint:eslint": "eslint \"**/*.{js,ts,html}\" --ignore-path .eslintignore",
48
- "lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .eslintignore",
49
- "lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .eslintignore",
47
+ "lint:eslint": "eslint .",
48
+ "lint:prettier": "prettier \"**/*.{js,ts,json,html}\" --check --ignore-path .prettierignore",
49
+ "lint:stylelint": "stylelint \"**/*.{scss,css}\" --allow-empty-input --ignore-path .prettierignore",
50
50
  "preview:vite": "vite preview",
51
51
  "sass:watch": "sass-style-template",
52
52
  "sort:package": "npx sort-package-json",
@@ -68,6 +68,8 @@
68
68
  },
69
69
  "prettier": {
70
70
  "arrowParens": "avoid",
71
+ "bracketSameLine": true,
72
+ "htmlWhitespaceSensitivity": "ignore",
71
73
  "printWidth": 100,
72
74
  "singleQuote": true,
73
75
  "trailingComma": "all",
@@ -81,47 +83,6 @@
81
83
  }
82
84
  ]
83
85
  },
84
- "eslintConfig": {
85
- "parserOptions": {
86
- "ecmaVersion": "latest"
87
- },
88
- "extends": [
89
- "@open-wc",
90
- "prettier"
91
- ],
92
- "rules": {
93
- "class-methods-use-this": "off",
94
- "no-unused-expressions": [
95
- "error",
96
- {
97
- "allowShortCircuit": true,
98
- "allowTernary": true
99
- }
100
- ],
101
- "object-curly-newline": "off",
102
- "import/extensions": [
103
- "error",
104
- "always",
105
- {
106
- "ignorePackages": true
107
- }
108
- ],
109
- "import/no-extraneous-dependencies": [
110
- "error",
111
- {
112
- "devDependencies": [
113
- "**/test/**/*.{js,ts}",
114
- "**/*.config.{js,ts,mjs,cjs}",
115
- "**/*.conf.{js,ts,mjs,cjs}"
116
- ]
117
- }
118
- ],
119
- "import/no-unresolved": "off",
120
- "import/prefer-default-export": "off",
121
- "lit/no-classfield-shadowing": "off",
122
- "lit/no-native-attributes": "off"
123
- }
124
- },
125
86
  "stylelint": {
126
87
  "extends": "stylelint-config-standard-scss",
127
88
  "rules": {
@@ -136,12 +97,12 @@
136
97
  "xstate": "^5.9.1"
137
98
  },
138
99
  "devDependencies": {
139
- "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.8.0",
140
- "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.0"
100
+ "@blockquote-web-components/blockquote-base-common-dev-dependencies": "^1.9.1",
101
+ "@blockquote-web-components/blockquote-base-embedded-webview": "^1.10.2"
141
102
  },
142
103
  "publishConfig": {
143
104
  "access": "public"
144
105
  },
145
106
  "customElements": "custom-elements.json",
146
- "gitHead": "4e3daa3414a4aa6eaf6cc0d792d3b86fa6fbb36b"
107
+ "gitHead": "7edc86cd16ada68f0d940336b43bfc9ba9389b0a"
147
108
  }