@tamagui/build 1.101.7 → 1.102.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 +3 -3
- package/tamagui-build.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/build",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.102.0",
|
|
4
4
|
"bin": {
|
|
5
5
|
"tamagui-build": "tamagui-build.js",
|
|
6
6
|
"teesx": "./teesx.sh"
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/core": "^7.23.3",
|
|
13
|
-
"@tamagui/babel-plugin-fully-specified": "1.
|
|
13
|
+
"@tamagui/babel-plugin-fully-specified": "1.102.0",
|
|
14
14
|
"@types/fs-extra": "^9.0.13",
|
|
15
15
|
"babel-plugin-fully-specified": "*",
|
|
16
16
|
"chokidar": "^3.5.2",
|
|
17
|
-
"esbuild": "^0.
|
|
17
|
+
"esbuild": "^0.23.0",
|
|
18
18
|
"esbuild-plugin-es5": "^2.1.0",
|
|
19
19
|
"esbuild-register": "^3.5.0",
|
|
20
20
|
"execa": "^5.0.0",
|
package/tamagui-build.js
CHANGED
|
@@ -612,7 +612,9 @@ async function esbuildWriteIfChanged(
|
|
|
612
612
|
[
|
|
613
613
|
require.resolve('@tamagui/babel-plugin-fully-specified'),
|
|
614
614
|
{
|
|
615
|
-
ensureFileExists:
|
|
615
|
+
ensureFileExists: {
|
|
616
|
+
forceExtension: '.mjs',
|
|
617
|
+
},
|
|
616
618
|
esExtensionDefault: '.mjs',
|
|
617
619
|
tryExtensions: ['.js'],
|
|
618
620
|
esExtensions: ['.mjs'],
|