tamagui-loader 1.65.4 → 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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/loader.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tamagui-loader",
3
- "version": "1.65.4",
3
+ "version": "1.67.0",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -13,20 +13,20 @@
13
13
  "build": "tamagui-build",
14
14
  "watch": "tamagui-build --watch",
15
15
  "lint": "../../node_modules/.bin/biome check src",
16
- "lint:fix": "../../node_modules/.bin/biome check --apply src",
16
+ "lint:fix": "../../node_modules/.bin/biome check --apply-unsafe src",
17
17
  "clean": "tamagui-build clean",
18
18
  "clean:build": "tamagui-build clean:build"
19
19
  },
20
20
  "dependencies": {
21
- "@tamagui/cli-color": "1.65.4",
22
- "@tamagui/static": "1.65.4",
21
+ "@tamagui/cli-color": "1.67.0",
22
+ "@tamagui/static": "1.67.0",
23
23
  "esbuild-loader": "^3.0.1",
24
24
  "fs-extra": "^11.1.0",
25
25
  "loader-utils": "^3.2.1",
26
26
  "lodash": "^4.17.21"
27
27
  },
28
28
  "devDependencies": {
29
- "@tamagui/build": "1.65.4",
29
+ "@tamagui/build": "1.67.0",
30
30
  "prettyjson": "^1.2.5",
31
31
  "webpack": "^5.88.2"
32
32
  },
package/src/loader.ts CHANGED
@@ -46,7 +46,7 @@ export const loader = async function loader(
46
46
 
47
47
  if (shouldDisable) {
48
48
  if (shouldPrintDebug) {
49
- // rome-ignore lint/suspicious/noConsoleLog: ok
49
+ // biome-ignore lint/suspicious/noConsoleLog: ok
50
50
  console.log('Disabling on file via pragma')
51
51
  }
52
52
  return callback(null, source)
@@ -81,7 +81,7 @@ export const loader = async function loader(
81
81
  console.error('Tamagui Webpack Loader Error:\n', ` ${message}\n`)
82
82
 
83
83
  if (message.includes('Cannot create proxy')) {
84
- // rome-ignore lint/suspicious/noConsoleLog: ok
84
+ // biome-ignore lint/suspicious/noConsoleLog: ok
85
85
  console.log(
86
86
  'This is usually due to components not loading at build-time. Check for logs just below the line above:'
87
87
  )