@shopify/shop-minis-react 0.4.9 → 0.4.10

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@shopify/shop-minis-react",
3
3
  "license": "SEE LICENSE IN LICENSE.txt",
4
- "version": "0.4.9",
4
+ "version": "0.4.10",
5
5
  "sideEffects": false,
6
6
  "type": "module",
7
7
  "engines": {
@@ -76,7 +76,6 @@
76
76
  "react-window": "1.8.11",
77
77
  "sonner": "2.0.5",
78
78
  "stylelint": "^16.26.1",
79
- "stylelint-config-standard": "^39.0.1",
80
79
  "tailwind-merge": "2.6.0",
81
80
  "tailwindcss": "4.1.8",
82
81
  "thumbhash": "0.1.1",
@@ -5,35 +5,8 @@ const __dirname = dirname(fileURLToPath(import.meta.url))
5
5
 
6
6
  /** @type {import('stylelint').Config} */
7
7
  const config = {
8
- extends: ['stylelint-config-standard'],
9
8
  plugins: [join(__dirname, 'plugin-no-font-imports.mjs')],
10
9
  rules: {
11
- // Tailwind CSS v4 at-rules
12
- 'at-rule-no-unknown': [
13
- true,
14
- {
15
- ignoreAtRules: [
16
- 'theme',
17
- 'source',
18
- 'custom-variant',
19
- 'apply',
20
- 'config',
21
- 'plugin',
22
- 'utility',
23
- 'variant',
24
- 'tailwind',
25
- 'reference',
26
- ],
27
- },
28
- ],
29
- // Tailwind theme() function
30
- 'function-no-unknown': [
31
- true,
32
- {
33
- ignoreFunctions: ['theme'],
34
- },
35
- ],
36
- 'import-notation': 'string',
37
10
  'plugin/no-font-imports': true,
38
11
  },
39
12
  }