@ezetgalaxy/titan 26.9.1 → 26.9.3

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 (97) hide show
  1. package/README.md +17 -5
  2. package/index.js +177 -112
  3. package/package.json +19 -5
  4. package/templates/common/app/titan.d.ts +87 -0
  5. package/templates/extension/node_modules/.bin/esbuild +16 -0
  6. package/templates/extension/node_modules/.bin/esbuild.cmd +17 -0
  7. package/templates/extension/node_modules/.bin/esbuild.ps1 +28 -0
  8. package/templates/extension/node_modules/.bin/titanpl-sdk +16 -0
  9. package/templates/extension/node_modules/.bin/titanpl-sdk.cmd +17 -0
  10. package/templates/extension/node_modules/.bin/titanpl-sdk.ps1 +28 -0
  11. package/templates/extension/node_modules/.package-lock.json +111 -0
  12. package/templates/extension/node_modules/@esbuild/win32-x64/README.md +3 -0
  13. package/templates/extension/node_modules/@esbuild/win32-x64/esbuild.exe +0 -0
  14. package/templates/extension/node_modules/@esbuild/win32-x64/package.json +20 -0
  15. package/templates/extension/node_modules/@titanpl/core/LICENSE +15 -0
  16. package/templates/extension/node_modules/@titanpl/core/README.md +127 -0
  17. package/templates/extension/node_modules/@titanpl/core/globals.d.ts +17 -0
  18. package/templates/extension/node_modules/@titanpl/core/index.js +250 -0
  19. package/templates/extension/node_modules/@titanpl/core/native/target/release/titan_core.dll +0 -0
  20. package/templates/extension/node_modules/@titanpl/core/package.json +41 -0
  21. package/templates/extension/node_modules/@titanpl/core/titan.json +115 -0
  22. package/templates/extension/node_modules/chokidar/LICENSE +21 -0
  23. package/templates/extension/node_modules/chokidar/README.md +305 -0
  24. package/templates/extension/node_modules/chokidar/handler.d.ts +90 -0
  25. package/templates/extension/node_modules/chokidar/handler.js +632 -0
  26. package/templates/extension/node_modules/chokidar/index.d.ts +217 -0
  27. package/templates/extension/node_modules/chokidar/index.js +822 -0
  28. package/templates/extension/node_modules/chokidar/package.json +63 -0
  29. package/templates/extension/node_modules/esbuild/LICENSE.md +21 -0
  30. package/templates/extension/node_modules/esbuild/README.md +3 -0
  31. package/templates/extension/node_modules/esbuild/bin/esbuild +223 -0
  32. package/templates/extension/node_modules/esbuild/install.js +289 -0
  33. package/templates/extension/node_modules/esbuild/lib/main.d.ts +716 -0
  34. package/templates/extension/node_modules/esbuild/lib/main.js +2242 -0
  35. package/templates/extension/node_modules/esbuild/package.json +49 -0
  36. package/templates/extension/node_modules/readdirp/LICENSE +21 -0
  37. package/templates/extension/node_modules/readdirp/README.md +120 -0
  38. package/templates/extension/node_modules/readdirp/index.d.ts +108 -0
  39. package/templates/extension/node_modules/readdirp/index.js +272 -0
  40. package/templates/extension/node_modules/readdirp/package.json +66 -0
  41. package/templates/extension/node_modules/titanpl-sdk/LICENSE +15 -0
  42. package/templates/extension/node_modules/titanpl-sdk/README.md +109 -0
  43. package/templates/extension/node_modules/titanpl-sdk/assets/titanpl-sdk.png +0 -0
  44. package/templates/extension/node_modules/titanpl-sdk/bin/run.js +251 -0
  45. package/templates/extension/node_modules/titanpl-sdk/index.d.ts +46 -0
  46. package/templates/extension/node_modules/titanpl-sdk/index.js +5 -0
  47. package/templates/extension/node_modules/titanpl-sdk/package.json +33 -0
  48. package/templates/{rust-js → extension/node_modules/titanpl-sdk/templates}/Dockerfile +4 -17
  49. package/templates/extension/node_modules/titanpl-sdk/templates/app/actions/hello.js +5 -0
  50. package/templates/extension/node_modules/titanpl-sdk/templates/app/app.js +10 -0
  51. package/templates/extension/node_modules/titanpl-sdk/templates/jsconfig.json +19 -0
  52. package/templates/extension/node_modules/titanpl-sdk/templates/server/Cargo.lock +2839 -0
  53. package/templates/extension/node_modules/titanpl-sdk/templates/server/Cargo.toml +27 -0
  54. package/templates/extension/node_modules/titanpl-sdk/templates/server/src/action_management.rs +131 -0
  55. package/templates/extension/node_modules/titanpl-sdk/templates/server/src/errors.rs +10 -0
  56. package/templates/extension/node_modules/titanpl-sdk/templates/server/src/extensions.rs +640 -0
  57. package/templates/extension/node_modules/titanpl-sdk/templates/server/src/main.rs +345 -0
  58. package/templates/extension/node_modules/titanpl-sdk/templates/server/src/utils.rs +33 -0
  59. package/templates/extension/node_modules/titanpl-sdk/templates/titan/bundle.js +65 -0
  60. package/templates/extension/node_modules/titanpl-sdk/templates/titan/dev.js +113 -0
  61. package/templates/extension/node_modules/titanpl-sdk/templates/titan/titan.js +98 -0
  62. package/templates/extension/package-lock.json +522 -0
  63. package/templates/extension/package.json +4 -3
  64. package/templates/rust-ts/app/actions/hello.ts +1 -1
  65. package/templates/rust-ts/titan/runtime.d.ts +1 -0
  66. package/templates/rust-ts/titan/runtime.js +1 -0
  67. package/templates/rust-ts/titan/titan.d.ts +117 -117
  68. package/templates/rust-ts/titan/titan.js +1 -1
  69. package/templates/ts/app/actions/hello.ts +1 -1
  70. package/templates/ts/titan/builder.js +121 -121
  71. package/templates/ts/titan/runtime.d.ts +1 -0
  72. package/templates/ts/titan/runtime.js +1 -1
  73. package/templates/ts/titan/titan.d.ts +117 -117
  74. package/templates/ts/titan/titan.js +1 -1
  75. package/titanpl-sdk/node_modules/.package-lock.json +17 -0
  76. package/titanpl-sdk/node_modules/@titanpl/core/LICENSE +15 -0
  77. package/titanpl-sdk/node_modules/@titanpl/core/README.md +127 -0
  78. package/titanpl-sdk/node_modules/@titanpl/core/globals.d.ts +17 -0
  79. package/titanpl-sdk/node_modules/@titanpl/core/index.js +250 -0
  80. package/titanpl-sdk/node_modules/@titanpl/core/native/target/release/titan_core.dll +0 -0
  81. package/titanpl-sdk/node_modules/@titanpl/core/package.json +41 -0
  82. package/titanpl-sdk/node_modules/@titanpl/core/titan.json +115 -0
  83. package/titanpl-sdk/package-lock.json +28 -0
  84. package/titanpl-sdk/package.json +6 -3
  85. package/templates/rust-js/_gitignore +0 -38
  86. package/templates/rust-js/app/titan.d.ts +0 -101
  87. package/templates/rust-ts/Dockerfile +0 -66
  88. package/templates/rust-ts/_dockerignore +0 -3
  89. package/templates/rust-ts/_gitignore +0 -38
  90. package/templates/ts/Dockerfile +0 -40
  91. package/templates/ts/_dockerignore +0 -3
  92. package/templates/ts/_gitignore +0 -38
  93. /package/templates/{js → common}/Dockerfile +0 -0
  94. /package/templates/{js → common}/_dockerignore +0 -0
  95. /package/templates/{js → common}/_gitignore +0 -0
  96. /package/templates/{rust-js/_dockerignore → extension/node_modules/titanpl-sdk/templates/.dockerignore} +0 -0
  97. /package/templates/{js → extension/node_modules/titanpl-sdk/templates}/app/titan.d.ts +0 -0
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "chokidar",
3
+ "description": "Minimal and efficient cross-platform file watching library",
4
+ "version": "5.0.0",
5
+ "type": "module",
6
+ "homepage": "https://github.com/paulmillr/chokidar",
7
+ "author": "Paul Miller (https://paulmillr.com)",
8
+ "files": [
9
+ "index.js",
10
+ "index.d.ts",
11
+ "handler.js",
12
+ "handler.d.ts"
13
+ ],
14
+ "main": "./index.js",
15
+ "exports": {
16
+ ".": {
17
+ "default": "./index.js"
18
+ },
19
+ "./handler.js": {
20
+ "default": "./handler.js"
21
+ }
22
+ },
23
+ "dependencies": {
24
+ "readdirp": "^5.0.0"
25
+ },
26
+ "devDependencies": {
27
+ "@paulmillr/jsbt": "0.4.5",
28
+ "@types/node": "24.10.1",
29
+ "prettier": "3.5.2",
30
+ "tinyspy": "3.0.2",
31
+ "typescript": "5.9.2",
32
+ "upath": "2.0.1"
33
+ },
34
+ "sideEffects": false,
35
+ "engines": {
36
+ "node": ">= 20.19.0"
37
+ },
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/paulmillr/chokidar.git"
41
+ },
42
+ "bugs": {
43
+ "url": "https://github.com/paulmillr/chokidar/issues"
44
+ },
45
+ "license": "MIT",
46
+ "scripts": {
47
+ "build": "tsc",
48
+ "lint": "prettier --check src",
49
+ "format": "prettier --write src",
50
+ "test": "node index.test.js",
51
+ "test:bun1": "bun index.test.js"
52
+ },
53
+ "keywords": [
54
+ "fs",
55
+ "watch",
56
+ "watchFile",
57
+ "watcher",
58
+ "watching",
59
+ "file",
60
+ "fsevents"
61
+ ],
62
+ "funding": "https://paulmillr.com/funding/"
63
+ }
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Evan Wallace
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ # esbuild
2
+
3
+ This is a JavaScript bundler and minifier. See https://github.com/evanw/esbuild and the [JavaScript API documentation](https://esbuild.github.io/api/) for details.
@@ -0,0 +1,223 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ var __create = Object.create;
4
+ var __defProp = Object.defineProperty;
5
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
+ var __getOwnPropNames = Object.getOwnPropertyNames;
7
+ var __getProtoOf = Object.getPrototypeOf;
8
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
18
+ // If the importer is in node compatibility mode or this is not an ESM
19
+ // file that has been converted to a CommonJS file using a Babel-
20
+ // compatible transform (i.e. "__esModule" has not been set), then set
21
+ // "default" to the CommonJS "module.exports" for node compatibility.
22
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
23
+ mod
24
+ ));
25
+
26
+ // lib/npm/node-platform.ts
27
+ var fs = require("fs");
28
+ var os = require("os");
29
+ var path = require("path");
30
+ var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
31
+ var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
32
+ var packageDarwin_arm64 = "@esbuild/darwin-arm64";
33
+ var packageDarwin_x64 = "@esbuild/darwin-x64";
34
+ var knownWindowsPackages = {
35
+ "win32 arm64 LE": "@esbuild/win32-arm64",
36
+ "win32 ia32 LE": "@esbuild/win32-ia32",
37
+ "win32 x64 LE": "@esbuild/win32-x64"
38
+ };
39
+ var knownUnixlikePackages = {
40
+ "aix ppc64 BE": "@esbuild/aix-ppc64",
41
+ "android arm64 LE": "@esbuild/android-arm64",
42
+ "darwin arm64 LE": "@esbuild/darwin-arm64",
43
+ "darwin x64 LE": "@esbuild/darwin-x64",
44
+ "freebsd arm64 LE": "@esbuild/freebsd-arm64",
45
+ "freebsd x64 LE": "@esbuild/freebsd-x64",
46
+ "linux arm LE": "@esbuild/linux-arm",
47
+ "linux arm64 LE": "@esbuild/linux-arm64",
48
+ "linux ia32 LE": "@esbuild/linux-ia32",
49
+ "linux mips64el LE": "@esbuild/linux-mips64el",
50
+ "linux ppc64 LE": "@esbuild/linux-ppc64",
51
+ "linux riscv64 LE": "@esbuild/linux-riscv64",
52
+ "linux s390x BE": "@esbuild/linux-s390x",
53
+ "linux x64 LE": "@esbuild/linux-x64",
54
+ "linux loong64 LE": "@esbuild/linux-loong64",
55
+ "netbsd arm64 LE": "@esbuild/netbsd-arm64",
56
+ "netbsd x64 LE": "@esbuild/netbsd-x64",
57
+ "openbsd arm64 LE": "@esbuild/openbsd-arm64",
58
+ "openbsd x64 LE": "@esbuild/openbsd-x64",
59
+ "sunos x64 LE": "@esbuild/sunos-x64"
60
+ };
61
+ var knownWebAssemblyFallbackPackages = {
62
+ "android arm LE": "@esbuild/android-arm",
63
+ "android x64 LE": "@esbuild/android-x64",
64
+ "openharmony arm64 LE": "@esbuild/openharmony-arm64"
65
+ };
66
+ function pkgAndSubpathForCurrentPlatform() {
67
+ let pkg;
68
+ let subpath;
69
+ let isWASM2 = false;
70
+ let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
71
+ if (platformKey in knownWindowsPackages) {
72
+ pkg = knownWindowsPackages[platformKey];
73
+ subpath = "esbuild.exe";
74
+ } else if (platformKey in knownUnixlikePackages) {
75
+ pkg = knownUnixlikePackages[platformKey];
76
+ subpath = "bin/esbuild";
77
+ } else if (platformKey in knownWebAssemblyFallbackPackages) {
78
+ pkg = knownWebAssemblyFallbackPackages[platformKey];
79
+ subpath = "bin/esbuild";
80
+ isWASM2 = true;
81
+ } else {
82
+ throw new Error(`Unsupported platform: ${platformKey}`);
83
+ }
84
+ return { pkg, subpath, isWASM: isWASM2 };
85
+ }
86
+ function pkgForSomeOtherPlatform() {
87
+ const libMainJS = require.resolve("esbuild");
88
+ const nodeModulesDirectory = path.dirname(path.dirname(path.dirname(libMainJS)));
89
+ if (path.basename(nodeModulesDirectory) === "node_modules") {
90
+ for (const unixKey in knownUnixlikePackages) {
91
+ try {
92
+ const pkg = knownUnixlikePackages[unixKey];
93
+ if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
94
+ } catch {
95
+ }
96
+ }
97
+ for (const windowsKey in knownWindowsPackages) {
98
+ try {
99
+ const pkg = knownWindowsPackages[windowsKey];
100
+ if (fs.existsSync(path.join(nodeModulesDirectory, pkg))) return pkg;
101
+ } catch {
102
+ }
103
+ }
104
+ }
105
+ return null;
106
+ }
107
+ function downloadedBinPath(pkg, subpath) {
108
+ const esbuildLibDir = path.dirname(require.resolve("esbuild"));
109
+ return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
110
+ }
111
+ function generateBinPath() {
112
+ if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
113
+ if (!fs.existsSync(ESBUILD_BINARY_PATH)) {
114
+ console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
115
+ } else {
116
+ return { binPath: ESBUILD_BINARY_PATH, isWASM: false };
117
+ }
118
+ }
119
+ const { pkg, subpath, isWASM: isWASM2 } = pkgAndSubpathForCurrentPlatform();
120
+ let binPath2;
121
+ try {
122
+ binPath2 = require.resolve(`${pkg}/${subpath}`);
123
+ } catch (e) {
124
+ binPath2 = downloadedBinPath(pkg, subpath);
125
+ if (!fs.existsSync(binPath2)) {
126
+ try {
127
+ require.resolve(pkg);
128
+ } catch {
129
+ const otherPkg = pkgForSomeOtherPlatform();
130
+ if (otherPkg) {
131
+ let suggestions = `
132
+ Specifically the "${otherPkg}" package is present but this platform
133
+ needs the "${pkg}" package instead. People often get into this
134
+ situation by installing esbuild on Windows or macOS and copying "node_modules"
135
+ into a Docker image that runs Linux, or by copying "node_modules" between
136
+ Windows and WSL environments.
137
+
138
+ If you are installing with npm, you can try not copying the "node_modules"
139
+ directory when you copy the files over, and running "npm ci" or "npm install"
140
+ on the destination platform after the copy. Or you could consider using yarn
141
+ instead of npm which has built-in support for installing a package on multiple
142
+ platforms simultaneously.
143
+
144
+ If you are installing with yarn, you can try listing both this platform and the
145
+ other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
146
+ feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
147
+ Keep in mind that this means multiple copies of esbuild will be present.
148
+ `;
149
+ if (pkg === packageDarwin_x64 && otherPkg === packageDarwin_arm64 || pkg === packageDarwin_arm64 && otherPkg === packageDarwin_x64) {
150
+ suggestions = `
151
+ Specifically the "${otherPkg}" package is present but this platform
152
+ needs the "${pkg}" package instead. People often get into this
153
+ situation by installing esbuild with npm running inside of Rosetta 2 and then
154
+ trying to use it with node running outside of Rosetta 2, or vice versa (Rosetta
155
+ 2 is Apple's on-the-fly x86_64-to-arm64 translation service).
156
+
157
+ If you are installing with npm, you can try ensuring that both npm and node are
158
+ not running under Rosetta 2 and then reinstalling esbuild. This likely involves
159
+ changing how you installed npm and/or node. For example, installing node with
160
+ the universal installer here should work: https://nodejs.org/en/download/. Or
161
+ you could consider using yarn instead of npm which has built-in support for
162
+ installing a package on multiple platforms simultaneously.
163
+
164
+ If you are installing with yarn, you can try listing both "arm64" and "x64"
165
+ in your ".yarnrc.yml" file using the "supportedArchitectures" feature:
166
+ https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
167
+ Keep in mind that this means multiple copies of esbuild will be present.
168
+ `;
169
+ }
170
+ throw new Error(`
171
+ You installed esbuild for another platform than the one you're currently using.
172
+ This won't work because esbuild is written with native code and needs to
173
+ install a platform-specific binary executable.
174
+ ${suggestions}
175
+ Another alternative is to use the "esbuild-wasm" package instead, which works
176
+ the same way on all platforms. But it comes with a heavy performance cost and
177
+ can sometimes be 10x slower than the "esbuild" package, so you may also not
178
+ want to do that.
179
+ `);
180
+ }
181
+ throw new Error(`The package "${pkg}" could not be found, and is needed by esbuild.
182
+
183
+ If you are installing esbuild with npm, make sure that you don't specify the
184
+ "--no-optional" or "--omit=optional" flags. The "optionalDependencies" feature
185
+ of "package.json" is used by esbuild to install the correct binary executable
186
+ for your current platform.`);
187
+ }
188
+ throw e;
189
+ }
190
+ }
191
+ if (/\.zip\//.test(binPath2)) {
192
+ let pnpapi;
193
+ try {
194
+ pnpapi = require("pnpapi");
195
+ } catch (e) {
196
+ }
197
+ if (pnpapi) {
198
+ const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
199
+ const binTargetPath = path.join(
200
+ root,
201
+ "node_modules",
202
+ ".cache",
203
+ "esbuild",
204
+ `pnpapi-${pkg.replace("/", "-")}-${"0.27.2"}-${path.basename(subpath)}`
205
+ );
206
+ if (!fs.existsSync(binTargetPath)) {
207
+ fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
208
+ fs.copyFileSync(binPath2, binTargetPath);
209
+ fs.chmodSync(binTargetPath, 493);
210
+ }
211
+ return { binPath: binTargetPath, isWASM: isWASM2 };
212
+ }
213
+ }
214
+ return { binPath: binPath2, isWASM: isWASM2 };
215
+ }
216
+
217
+ // lib/npm/node-shim.ts
218
+ var { binPath, isWASM } = generateBinPath();
219
+ if (isWASM) {
220
+ require("child_process").execFileSync("node", [binPath].concat(process.argv.slice(2)), { stdio: "inherit" });
221
+ } else {
222
+ require("child_process").execFileSync(binPath, process.argv.slice(2), { stdio: "inherit" });
223
+ }
@@ -0,0 +1,289 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __copyProps = (to, from, except, desc) => {
9
+ if (from && typeof from === "object" || typeof from === "function") {
10
+ for (let key of __getOwnPropNames(from))
11
+ if (!__hasOwnProp.call(to, key) && key !== except)
12
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
+ }
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ // If the importer is in node compatibility mode or this is not an ESM
18
+ // file that has been converted to a CommonJS file using a Babel-
19
+ // compatible transform (i.e. "__esModule" has not been set), then set
20
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
22
+ mod
23
+ ));
24
+
25
+ // lib/npm/node-platform.ts
26
+ var fs = require("fs");
27
+ var os = require("os");
28
+ var path = require("path");
29
+ var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
30
+ var isValidBinaryPath = (x) => !!x && x !== "/usr/bin/esbuild";
31
+ var knownWindowsPackages = {
32
+ "win32 arm64 LE": "@esbuild/win32-arm64",
33
+ "win32 ia32 LE": "@esbuild/win32-ia32",
34
+ "win32 x64 LE": "@esbuild/win32-x64"
35
+ };
36
+ var knownUnixlikePackages = {
37
+ "aix ppc64 BE": "@esbuild/aix-ppc64",
38
+ "android arm64 LE": "@esbuild/android-arm64",
39
+ "darwin arm64 LE": "@esbuild/darwin-arm64",
40
+ "darwin x64 LE": "@esbuild/darwin-x64",
41
+ "freebsd arm64 LE": "@esbuild/freebsd-arm64",
42
+ "freebsd x64 LE": "@esbuild/freebsd-x64",
43
+ "linux arm LE": "@esbuild/linux-arm",
44
+ "linux arm64 LE": "@esbuild/linux-arm64",
45
+ "linux ia32 LE": "@esbuild/linux-ia32",
46
+ "linux mips64el LE": "@esbuild/linux-mips64el",
47
+ "linux ppc64 LE": "@esbuild/linux-ppc64",
48
+ "linux riscv64 LE": "@esbuild/linux-riscv64",
49
+ "linux s390x BE": "@esbuild/linux-s390x",
50
+ "linux x64 LE": "@esbuild/linux-x64",
51
+ "linux loong64 LE": "@esbuild/linux-loong64",
52
+ "netbsd arm64 LE": "@esbuild/netbsd-arm64",
53
+ "netbsd x64 LE": "@esbuild/netbsd-x64",
54
+ "openbsd arm64 LE": "@esbuild/openbsd-arm64",
55
+ "openbsd x64 LE": "@esbuild/openbsd-x64",
56
+ "sunos x64 LE": "@esbuild/sunos-x64"
57
+ };
58
+ var knownWebAssemblyFallbackPackages = {
59
+ "android arm LE": "@esbuild/android-arm",
60
+ "android x64 LE": "@esbuild/android-x64",
61
+ "openharmony arm64 LE": "@esbuild/openharmony-arm64"
62
+ };
63
+ function pkgAndSubpathForCurrentPlatform() {
64
+ let pkg;
65
+ let subpath;
66
+ let isWASM = false;
67
+ let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
68
+ if (platformKey in knownWindowsPackages) {
69
+ pkg = knownWindowsPackages[platformKey];
70
+ subpath = "esbuild.exe";
71
+ } else if (platformKey in knownUnixlikePackages) {
72
+ pkg = knownUnixlikePackages[platformKey];
73
+ subpath = "bin/esbuild";
74
+ } else if (platformKey in knownWebAssemblyFallbackPackages) {
75
+ pkg = knownWebAssemblyFallbackPackages[platformKey];
76
+ subpath = "bin/esbuild";
77
+ isWASM = true;
78
+ } else {
79
+ throw new Error(`Unsupported platform: ${platformKey}`);
80
+ }
81
+ return { pkg, subpath, isWASM };
82
+ }
83
+ function downloadedBinPath(pkg, subpath) {
84
+ const esbuildLibDir = path.dirname(require.resolve("esbuild"));
85
+ return path.join(esbuildLibDir, `downloaded-${pkg.replace("/", "-")}-${path.basename(subpath)}`);
86
+ }
87
+
88
+ // lib/npm/node-install.ts
89
+ var fs2 = require("fs");
90
+ var os2 = require("os");
91
+ var path2 = require("path");
92
+ var zlib = require("zlib");
93
+ var https = require("https");
94
+ var child_process = require("child_process");
95
+ var versionFromPackageJSON = require(path2.join(__dirname, "package.json")).version;
96
+ var toPath = path2.join(__dirname, "bin", "esbuild");
97
+ var isToPathJS = true;
98
+ function validateBinaryVersion(...command) {
99
+ command.push("--version");
100
+ let stdout;
101
+ try {
102
+ stdout = child_process.execFileSync(command.shift(), command, {
103
+ // Without this, this install script strangely crashes with the error
104
+ // "EACCES: permission denied, write" but only on Ubuntu Linux when node is
105
+ // installed from the Snap Store. This is not a problem when you download
106
+ // the official version of node. The problem appears to be that stderr
107
+ // (i.e. file descriptor 2) isn't writable?
108
+ //
109
+ // More info:
110
+ // - https://snapcraft.io/ (what the Snap Store is)
111
+ // - https://nodejs.org/dist/ (download the official version of node)
112
+ // - https://github.com/evanw/esbuild/issues/1711#issuecomment-1027554035
113
+ //
114
+ stdio: "pipe"
115
+ }).toString().trim();
116
+ } catch (err) {
117
+ if (os2.platform() === "darwin" && /_SecTrustEvaluateWithError/.test(err + "")) {
118
+ let os3 = "this version of macOS";
119
+ try {
120
+ os3 = "macOS " + child_process.execFileSync("sw_vers", ["-productVersion"]).toString().trim();
121
+ } catch {
122
+ }
123
+ throw new Error(`The "esbuild" package cannot be installed because ${os3} is too outdated.
124
+
125
+ The Go compiler (which esbuild relies on) no longer supports ${os3},
126
+ which means the "esbuild" binary executable can't be run. You can either:
127
+
128
+ * Update your version of macOS to one that the Go compiler supports
129
+ * Use the "esbuild-wasm" package instead of the "esbuild" package
130
+ * Build esbuild yourself using an older version of the Go compiler
131
+ `);
132
+ }
133
+ throw err;
134
+ }
135
+ if (stdout !== versionFromPackageJSON) {
136
+ throw new Error(`Expected ${JSON.stringify(versionFromPackageJSON)} but got ${JSON.stringify(stdout)}`);
137
+ }
138
+ }
139
+ function isYarn() {
140
+ const { npm_config_user_agent } = process.env;
141
+ if (npm_config_user_agent) {
142
+ return /\byarn\//.test(npm_config_user_agent);
143
+ }
144
+ return false;
145
+ }
146
+ function fetch(url) {
147
+ return new Promise((resolve, reject) => {
148
+ https.get(url, (res) => {
149
+ if ((res.statusCode === 301 || res.statusCode === 302) && res.headers.location)
150
+ return fetch(res.headers.location).then(resolve, reject);
151
+ if (res.statusCode !== 200)
152
+ return reject(new Error(`Server responded with ${res.statusCode}`));
153
+ let chunks = [];
154
+ res.on("data", (chunk) => chunks.push(chunk));
155
+ res.on("end", () => resolve(Buffer.concat(chunks)));
156
+ }).on("error", reject);
157
+ });
158
+ }
159
+ function extractFileFromTarGzip(buffer, subpath) {
160
+ try {
161
+ buffer = zlib.unzipSync(buffer);
162
+ } catch (err) {
163
+ throw new Error(`Invalid gzip data in archive: ${err && err.message || err}`);
164
+ }
165
+ let str = (i, n) => String.fromCharCode(...buffer.subarray(i, i + n)).replace(/\0.*$/, "");
166
+ let offset = 0;
167
+ subpath = `package/${subpath}`;
168
+ while (offset < buffer.length) {
169
+ let name = str(offset, 100);
170
+ let size = parseInt(str(offset + 124, 12), 8);
171
+ offset += 512;
172
+ if (!isNaN(size)) {
173
+ if (name === subpath) return buffer.subarray(offset, offset + size);
174
+ offset += size + 511 & ~511;
175
+ }
176
+ }
177
+ throw new Error(`Could not find ${JSON.stringify(subpath)} in archive`);
178
+ }
179
+ function installUsingNPM(pkg, subpath, binPath) {
180
+ const env = { ...process.env, npm_config_global: void 0 };
181
+ const esbuildLibDir = path2.dirname(require.resolve("esbuild"));
182
+ const installDir = path2.join(esbuildLibDir, "npm-install");
183
+ fs2.mkdirSync(installDir);
184
+ try {
185
+ fs2.writeFileSync(path2.join(installDir, "package.json"), "{}");
186
+ child_process.execSync(
187
+ `npm install --loglevel=error --prefer-offline --no-audit --progress=false ${pkg}@${versionFromPackageJSON}`,
188
+ { cwd: installDir, stdio: "pipe", env }
189
+ );
190
+ const installedBinPath = path2.join(installDir, "node_modules", pkg, subpath);
191
+ fs2.renameSync(installedBinPath, binPath);
192
+ } finally {
193
+ try {
194
+ removeRecursive(installDir);
195
+ } catch {
196
+ }
197
+ }
198
+ }
199
+ function removeRecursive(dir) {
200
+ for (const entry of fs2.readdirSync(dir)) {
201
+ const entryPath = path2.join(dir, entry);
202
+ let stats;
203
+ try {
204
+ stats = fs2.lstatSync(entryPath);
205
+ } catch {
206
+ continue;
207
+ }
208
+ if (stats.isDirectory()) removeRecursive(entryPath);
209
+ else fs2.unlinkSync(entryPath);
210
+ }
211
+ fs2.rmdirSync(dir);
212
+ }
213
+ function applyManualBinaryPathOverride(overridePath) {
214
+ const pathString = JSON.stringify(overridePath);
215
+ fs2.writeFileSync(toPath, `#!/usr/bin/env node
216
+ require('child_process').execFileSync(${pathString}, process.argv.slice(2), { stdio: 'inherit' });
217
+ `);
218
+ const libMain = path2.join(__dirname, "lib", "main.js");
219
+ const code = fs2.readFileSync(libMain, "utf8");
220
+ fs2.writeFileSync(libMain, `var ESBUILD_BINARY_PATH = ${pathString};
221
+ ${code}`);
222
+ }
223
+ function maybeOptimizePackage(binPath) {
224
+ const { isWASM } = pkgAndSubpathForCurrentPlatform();
225
+ if (os2.platform() !== "win32" && !isYarn() && !isWASM) {
226
+ const tempPath = path2.join(__dirname, "bin-esbuild");
227
+ try {
228
+ fs2.linkSync(binPath, tempPath);
229
+ fs2.renameSync(tempPath, toPath);
230
+ isToPathJS = false;
231
+ fs2.unlinkSync(tempPath);
232
+ } catch {
233
+ }
234
+ }
235
+ }
236
+ async function downloadDirectlyFromNPM(pkg, subpath, binPath) {
237
+ const url = `https://registry.npmjs.org/${pkg}/-/${pkg.replace("@esbuild/", "")}-${versionFromPackageJSON}.tgz`;
238
+ console.error(`[esbuild] Trying to download ${JSON.stringify(url)}`);
239
+ try {
240
+ fs2.writeFileSync(binPath, extractFileFromTarGzip(await fetch(url), subpath));
241
+ fs2.chmodSync(binPath, 493);
242
+ } catch (e) {
243
+ console.error(`[esbuild] Failed to download ${JSON.stringify(url)}: ${e && e.message || e}`);
244
+ throw e;
245
+ }
246
+ }
247
+ async function checkAndPreparePackage() {
248
+ if (isValidBinaryPath(ESBUILD_BINARY_PATH)) {
249
+ if (!fs2.existsSync(ESBUILD_BINARY_PATH)) {
250
+ console.warn(`[esbuild] Ignoring bad configuration: ESBUILD_BINARY_PATH=${ESBUILD_BINARY_PATH}`);
251
+ } else {
252
+ applyManualBinaryPathOverride(ESBUILD_BINARY_PATH);
253
+ return;
254
+ }
255
+ }
256
+ const { pkg, subpath } = pkgAndSubpathForCurrentPlatform();
257
+ let binPath;
258
+ try {
259
+ binPath = require.resolve(`${pkg}/${subpath}`);
260
+ } catch (e) {
261
+ console.error(`[esbuild] Failed to find package "${pkg}" on the file system
262
+
263
+ This can happen if you use the "--no-optional" flag. The "optionalDependencies"
264
+ package.json feature is used by esbuild to install the correct binary executable
265
+ for your current platform. This install script will now attempt to work around
266
+ this. If that fails, you need to remove the "--no-optional" flag to use esbuild.
267
+ `);
268
+ binPath = downloadedBinPath(pkg, subpath);
269
+ try {
270
+ console.error(`[esbuild] Trying to install package "${pkg}" using npm`);
271
+ installUsingNPM(pkg, subpath, binPath);
272
+ } catch (e2) {
273
+ console.error(`[esbuild] Failed to install package "${pkg}" using npm: ${e2 && e2.message || e2}`);
274
+ try {
275
+ await downloadDirectlyFromNPM(pkg, subpath, binPath);
276
+ } catch (e3) {
277
+ throw new Error(`Failed to install package "${pkg}"`);
278
+ }
279
+ }
280
+ }
281
+ maybeOptimizePackage(binPath);
282
+ }
283
+ checkAndPreparePackage().then(() => {
284
+ if (isToPathJS) {
285
+ validateBinaryVersion(process.execPath, toPath);
286
+ } else {
287
+ validateBinaryVersion(toPath);
288
+ }
289
+ });