@dxos/esbuild-plugins 2.28.11 → 2.28.12
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.
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"files": {
|
|
3
3
|
"packages/esbuild-plugins/.rush/temp/shrinkwrap-deps.json": "d0e19adbba4c74a9eb05bc14d11853a7c19db72e",
|
|
4
4
|
"packages/esbuild-plugins/.eslintrc.js": "df10978d4f437b74e62f8b640659aab793749f9f",
|
|
5
|
-
"packages/esbuild-plugins/package.json": "
|
|
5
|
+
"packages/esbuild-plugins/package.json": "0c3ac8a334a56510a78efa8d16c70b9754a34c8a",
|
|
6
6
|
"packages/esbuild-plugins/polyfills/Buffer.js": "665dd02d10f1afe529b19a91548bf6e58dc73294",
|
|
7
7
|
"packages/esbuild-plugins/polyfills/crypto.js": "a8aa8ac2732cb63fc4ce2b65ce7f92f7a7fcd586",
|
|
8
8
|
"packages/esbuild-plugins/polyfills/empty-module-stub.js": "856436e94775746fcbcbf86bdbcbb6351cc3e17b",
|
|
9
9
|
"packages/esbuild-plugins/polyfills/module.js": "db1ecf4b41d2447de6571410611ffa7edaf22966",
|
|
10
|
-
"packages/esbuild-plugins/polyfills/process.js": "
|
|
10
|
+
"packages/esbuild-plugins/polyfills/process.js": "9454b05d04d8f96aef39a8f2ee2383aa247e8426",
|
|
11
11
|
"packages/esbuild-plugins/src/fix-graceful-fs-plugin.ts": "4ee183d68d9161f7f0d9ff95ff86d7f7916a4f61",
|
|
12
12
|
"packages/esbuild-plugins/src/fix-memdown-plugin.ts": "915beb3e1d605d0c95ac0b5a080ff611f3d6dcf7",
|
|
13
13
|
"packages/esbuild-plugins/src/index.ts": "3234c1c58770dff0835a1792144c5e7a71426dea",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Invoking: pnpm build && pnpm lint
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
> @dxos/esbuild-plugins@2.28.
|
|
4
|
+
> @dxos/esbuild-plugins@2.28.12 build /home/runner/work/esbuild-server/esbuild-server/packages/esbuild-plugins
|
|
5
5
|
> tsc
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
> @dxos/esbuild-plugins@2.28.
|
|
8
|
+
> @dxos/esbuild-plugins@2.28.12 lint /home/runner/work/esbuild-server/esbuild-server/packages/esbuild-plugins
|
|
9
9
|
> eslint .
|
|
10
10
|
|
package/package.json
CHANGED
package/polyfills/process.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
// based off https://github.com/defunctzombie/node-process/blob/master/browser.js
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
var _window = this || self || window;
|
|
6
|
+
_window.global = _window;
|
|
6
7
|
|
|
7
8
|
function defaultSetTimout () {
|
|
8
9
|
throw new Error('setTimeout has not been defined');
|
|
@@ -215,7 +216,7 @@ function uptime () {
|
|
|
215
216
|
return dif / 1000;
|
|
216
217
|
}
|
|
217
218
|
|
|
218
|
-
|
|
219
|
+
_window.setImmediate = nextTick;
|
|
219
220
|
|
|
220
221
|
export var process = {
|
|
221
222
|
nextTick: nextTick,
|