@shopify/shop-minis-react 0.0.0-snapshot.20251203190954 → 0.0.0-snapshot.20251204115205
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.0.0-snapshot.
|
|
4
|
+
"version": "0.0.0-snapshot.20251204115205",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"typescript": ">=5.0.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@shopify/shop-minis-platform": "0.0.0-snapshot.
|
|
49
|
+
"@shopify/shop-minis-platform": "0.0.0-snapshot.20251204115205",
|
|
50
50
|
"@tailwindcss/vite": "4.1.8",
|
|
51
51
|
"@tanstack/react-query": "5.86.0",
|
|
52
52
|
"@types/color": "3.0.6",
|
package/stylelint/config.mjs
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import {dirname, join} from 'node:path'
|
|
2
|
+
import {fileURLToPath} from 'node:url'
|
|
3
|
+
|
|
4
|
+
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
5
|
+
|
|
1
6
|
/** @type {import('stylelint').Config} */
|
|
2
7
|
const config = {
|
|
3
8
|
extends: ['stylelint-config-standard'],
|
|
4
|
-
plugins: ['
|
|
9
|
+
plugins: [join(__dirname, 'plugin-no-font-imports.mjs')],
|
|
5
10
|
rules: {
|
|
6
11
|
// Tailwind CSS v4 at-rules
|
|
7
12
|
'at-rule-no-unknown': [
|
|
@@ -17,6 +22,7 @@ const config = {
|
|
|
17
22
|
'utility',
|
|
18
23
|
'variant',
|
|
19
24
|
'tailwind',
|
|
25
|
+
'reference',
|
|
20
26
|
],
|
|
21
27
|
},
|
|
22
28
|
],
|
|
@@ -25,7 +25,7 @@ const ruleFunction = primary => {
|
|
|
25
25
|
root.walkAtRules('import', atRule => {
|
|
26
26
|
const importPath = atRule.params
|
|
27
27
|
|
|
28
|
-
// Check for font-related URLs
|
|
28
|
+
// Check for common font-related URLs
|
|
29
29
|
if (
|
|
30
30
|
importPath.includes('fonts.googleapis.com') ||
|
|
31
31
|
importPath.includes('fonts.gstatic.com') ||
|