@tamagui/babel-plugin 1.66.0 → 1.67.0
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 +5 -5
- package/src/index.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/babel-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.67.0",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"main": "dist/cjs",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"build": "tamagui-build",
|
|
19
19
|
"watch": "tamagui-build --watch",
|
|
20
20
|
"lint": "../../node_modules/.bin/biome check src",
|
|
21
|
-
"lint:fix": "../../node_modules/.bin/biome check --apply src",
|
|
21
|
+
"lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
|
|
22
22
|
"clean": "tamagui-build clean",
|
|
23
23
|
"clean:build": "tamagui-build clean:build"
|
|
24
24
|
},
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"@babel/helper-plugin-utils": "^7.21.5",
|
|
28
28
|
"@babel/template": "^7.20.7",
|
|
29
29
|
"@babel/traverse": "^7.21.5",
|
|
30
|
-
"@tamagui/simple-hash": "1.
|
|
31
|
-
"@tamagui/static": "1.
|
|
30
|
+
"@tamagui/simple-hash": "1.67.0",
|
|
31
|
+
"@tamagui/static": "1.67.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@babel/types": "^7.21.5",
|
|
35
|
-
"@tamagui/build": "1.
|
|
35
|
+
"@tamagui/build": "1.67.0"
|
|
36
36
|
},
|
|
37
37
|
"gitHead": "a49cc7ea6b93ba384e77a4880ae48ac4a5635c14"
|
|
38
38
|
}
|
package/src/index.ts
CHANGED
|
@@ -230,7 +230,7 @@ export default declare(function snackBabelPlugin(
|
|
|
230
230
|
|
|
231
231
|
if (!Object.keys(sheetStyles).length) {
|
|
232
232
|
if (shouldPrintDebug) {
|
|
233
|
-
//
|
|
233
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
234
234
|
console.log('END no styles')
|
|
235
235
|
}
|
|
236
236
|
return
|
|
@@ -250,9 +250,9 @@ export default declare(function snackBabelPlugin(
|
|
|
250
250
|
root.unshiftContainer('body', importStyleSheet())
|
|
251
251
|
|
|
252
252
|
if (shouldPrintDebug) {
|
|
253
|
-
//
|
|
253
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
254
254
|
console.log('\n -------- output code ------- \n')
|
|
255
|
-
//
|
|
255
|
+
// biome-ignore lint/suspicious/noConsoleLog: ok
|
|
256
256
|
console.log(
|
|
257
257
|
generator(root.parent)
|
|
258
258
|
.code.split('\n')
|