@idlebox/common 1.5.3 → 1.5.4

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.
@@ -1,7 +1,2 @@
1
- declare global {
2
- interface ImportMeta {
3
- env?: Record<string, string>;
4
- }
5
- }
6
1
  export declare const isProductionMode: boolean;
7
2
  //# sourceMappingURL=compile.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"compile.d.ts","sourceRoot":"","sources":["../../src/platform/compile.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,UAAU;QACnB,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;KAC7B;CACD;AACD,eAAO,MAAM,gBAAgB,SAA6C,CAAC"}
1
+ {"version":3,"file":"compile.d.ts","sourceRoot":"","sources":["../../src/platform/compile.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,SAA6C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"compile.js","sourceRoot":"","sources":["../../src/platform/compile.ts"],"names":[],"mappings":"AAKA,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK,YAAY,CAAC"}
1
+ {"version":3,"file":"compile.js","sourceRoot":"","sources":["../../src/platform/compile.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,KAAK,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@idlebox/common",
3
3
  "type": "module",
4
- "version": "1.5.3",
4
+ "version": "1.5.4",
5
5
  "description": "Common utilities",
6
6
  "keywords": [
7
7
  "utilities",
@@ -19,11 +19,11 @@
19
19
  "sideEffects": false,
20
20
  "devDependencies": {
21
21
  "@types/debug": "^4.1.12",
22
- "@build-script/autoindex": "^0.0.10",
23
- "@build-script/codegen": "^1.0.10",
22
+ "@build-script/autoindex": "^0.0.11",
24
23
  "@build-script/single-dog-asset": "latest",
24
+ "@build-script/codegen": "^1.0.11",
25
25
  "@idlebox/itypes": "^1.0.14",
26
- "@mpis/publisher": "^0.0.10",
26
+ "@mpis/publisher": "^0.0.11",
27
27
  "@mpis/run": "^0.0.14"
28
28
  },
29
29
  "dependencies": {
@@ -1,6 +1 @@
1
- declare global {
2
- interface ImportMeta {
3
- env?: Record<string, string>;
4
- }
5
- }
6
1
  export const isProductionMode = import.meta.env?.['MODE'] === 'production';
package/src/global.d.ts DELETED
@@ -1,12 +0,0 @@
1
- /// <reference types="@idlebox/itypes" />
2
- /// <reference types="debug" />
3
-
4
- declare interface ErrorConstructor {
5
- captureStackTrace: any;
6
- stackTraceLimit: number;
7
- }
8
-
9
- declare namespace NodeJS {
10
- type Signals = string;
11
- interface ErrnoException extends Error {}
12
- }