@absolutejs/absolute 0.19.0-beta.37 → 0.19.0-beta.39
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/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/dist/build.js +18 -6
- package/dist/build.js.map +3 -3
- package/dist/dev/client/handlers/react.ts +71 -2
- package/dist/index.js +18 -6
- package/dist/index.js.map +3 -3
- package/native/packages/darwin-arm64/package.json +1 -1
- package/native/packages/darwin-x64/package.json +1 -1
- package/native/packages/linux-arm64/package.json +1 -1
- package/native/packages/linux-x64/package.json +1 -1
- package/package.json +6 -6
- /package/dist/{dev/ssrWorker.ts → ssrWorker.ts} +0 -0
package/package.json
CHANGED
|
@@ -138,17 +138,17 @@
|
|
|
138
138
|
}
|
|
139
139
|
},
|
|
140
140
|
"optionalDependencies": {
|
|
141
|
-
"@absolutejs/native-darwin-arm64": "0.19.0-beta.
|
|
142
|
-
"@absolutejs/native-darwin-x64": "0.19.0-beta.
|
|
143
|
-
"@absolutejs/native-linux-arm64": "0.19.0-beta.
|
|
144
|
-
"@absolutejs/native-linux-x64": "0.19.0-beta.
|
|
141
|
+
"@absolutejs/native-darwin-arm64": "0.19.0-beta.39",
|
|
142
|
+
"@absolutejs/native-darwin-x64": "0.19.0-beta.39",
|
|
143
|
+
"@absolutejs/native-linux-arm64": "0.19.0-beta.39",
|
|
144
|
+
"@absolutejs/native-linux-x64": "0.19.0-beta.39"
|
|
145
145
|
},
|
|
146
146
|
"repository": {
|
|
147
147
|
"type": "git",
|
|
148
148
|
"url": "https://github.com/absolutejs/absolutejs.git"
|
|
149
149
|
},
|
|
150
150
|
"scripts": {
|
|
151
|
-
"build": "rm -rf dist && bun build src/index.ts src/build.ts src/angular/index.ts src/react/index.ts src/react/hooks/index.ts src/svelte/index.ts src/vue/index.ts --outdir dist --sourcemap --target=bun --external react --external react-dom --external vue --external @vue/compiler-sfc --external vue/server-renderer --external svelte --external svelte/compiler --external svelte/server --external elysia --external @elysiajs/static --external @angular/compiler-cli --external @angular/core --external @angular/common --external @angular/platform-browser --external @angular/platform-server --external @angular/ssr --external zone.js --external debug --external @absolutejs/native-linux-x64 --external @absolutejs/native-linux-arm64 --external @absolutejs/native-darwin-x64 --external @absolutejs/native-darwin-arm64 && bun build src/cli/index.ts --outfile dist/cli/index.js --target=bun && tsc --emitDeclarationOnly --project tsconfig.build.json && mkdir -p dist/dev && cp -r src/dev/client dist/dev/client && cp src/dev/ssrWorker.ts dist/
|
|
151
|
+
"build": "rm -rf dist && bun build src/index.ts src/build.ts src/angular/index.ts src/react/index.ts src/react/hooks/index.ts src/svelte/index.ts src/vue/index.ts --outdir dist --sourcemap --target=bun --external react --external react-dom --external vue --external @vue/compiler-sfc --external vue/server-renderer --external svelte --external svelte/compiler --external svelte/server --external elysia --external @elysiajs/static --external @angular/compiler-cli --external @angular/core --external @angular/common --external @angular/platform-browser --external @angular/platform-server --external @angular/ssr --external zone.js --external debug --external @absolutejs/native-linux-x64 --external @absolutejs/native-linux-arm64 --external @absolutejs/native-darwin-x64 --external @absolutejs/native-darwin-arm64 && bun build src/cli/index.ts --outfile dist/cli/index.js --target=bun && tsc --emitDeclarationOnly --project tsconfig.build.json && mkdir -p dist/dev && cp -r src/dev/client dist/dev/client && cp src/dev/ssrWorker.ts dist/ssrWorker.ts",
|
|
152
152
|
"build:native": "./native/build.sh",
|
|
153
153
|
"db:push": "drizzle-kit push",
|
|
154
154
|
"db:studio": "drizzle-kit studio",
|
|
@@ -162,5 +162,5 @@
|
|
|
162
162
|
"typecheck": "bun run vue-tsc --noEmit"
|
|
163
163
|
},
|
|
164
164
|
"types": "./dist/src/index.d.ts",
|
|
165
|
-
"version": "0.19.0-beta.
|
|
165
|
+
"version": "0.19.0-beta.39"
|
|
166
166
|
}
|
|
File without changes
|