@cubejs-backend/schema-compiler 1.2.0 → 1.2.1
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/dist/src/adapter/BaseQuery.d.ts +4 -1
- package/dist/src/adapter/BaseQuery.d.ts.map +1 -1
- package/dist/src/adapter/BaseQuery.js +17 -1
- package/dist/src/adapter/BaseQuery.js.map +1 -1
- package/dist/src/compiler/CubeSymbols.d.ts +9 -0
- package/dist/src/compiler/CubeSymbols.d.ts.map +1 -1
- package/dist/src/compiler/CubeSymbols.js +10 -7
- package/dist/src/compiler/CubeSymbols.js.map +1 -1
- package/dist/src/compiler/DataSchemaCompiler.d.ts +11 -5
- package/dist/src/compiler/DataSchemaCompiler.d.ts.map +1 -1
- package/dist/src/compiler/DataSchemaCompiler.js +62 -19
- package/dist/src/compiler/DataSchemaCompiler.js.map +1 -1
- package/dist/src/compiler/ErrorReporter.d.ts +4 -0
- package/dist/src/compiler/ErrorReporter.d.ts.map +1 -1
- package/dist/src/compiler/ErrorReporter.js +12 -0
- package/dist/src/compiler/ErrorReporter.js.map +1 -1
- package/dist/src/compiler/PrepareCompiler.d.ts.map +1 -1
- package/dist/src/compiler/PrepareCompiler.js +2 -0
- package/dist/src/compiler/PrepareCompiler.js.map +1 -1
- package/dist/src/compiler/transpilers/CubePropContextTranspiler.d.ts +5 -7
- package/dist/src/compiler/transpilers/CubePropContextTranspiler.d.ts.map +1 -1
- package/dist/src/compiler/transpilers/CubePropContextTranspiler.js.map +1 -1
- package/dist/src/compiler/transpilers/LightweightNodeCubeDictionary.d.ts +8 -0
- package/dist/src/compiler/transpilers/LightweightNodeCubeDictionary.d.ts.map +1 -0
- package/dist/src/compiler/transpilers/LightweightNodeCubeDictionary.js +17 -0
- package/dist/src/compiler/transpilers/LightweightNodeCubeDictionary.js.map +1 -0
- package/dist/src/compiler/transpilers/LightweightSymbolResolver.d.ts +11 -0
- package/dist/src/compiler/transpilers/LightweightSymbolResolver.d.ts.map +1 -0
- package/dist/src/compiler/transpilers/LightweightSymbolResolver.js +28 -0
- package/dist/src/compiler/transpilers/LightweightSymbolResolver.js.map +1 -0
- package/dist/src/compiler/transpilers/transpiler.interface.d.ts +7 -0
- package/dist/src/compiler/transpilers/transpiler.interface.d.ts.map +1 -1
- package/dist/src/compiler/transpilers/transpiler_worker.d.ts +2 -0
- package/dist/src/compiler/transpilers/transpiler_worker.d.ts.map +1 -0
- package/dist/src/compiler/transpilers/transpiler_worker.js +54 -0
- package/dist/src/compiler/transpilers/transpiler_worker.js.map +1 -0
- package/package.json +8 -7
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { TranspilerCubeResolver } from './transpiler.interface';
|
|
2
|
+
export declare class LightweightNodeCubeDictionary implements TranspilerCubeResolver {
|
|
3
|
+
private cubeNames;
|
|
4
|
+
constructor(cubeNames?: string[]);
|
|
5
|
+
resolveCube(name: string): boolean;
|
|
6
|
+
setCubeNames(cubeNames: string[]): void;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=LightweightNodeCubeDictionary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LightweightNodeCubeDictionary.d.ts","sourceRoot":"","sources":["../../../../src/compiler/transpilers/LightweightNodeCubeDictionary.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,wBAAwB,CAAC;AAEhE,qBAAa,6BAA8B,YAAW,sBAAsB;IACvD,OAAO,CAAC,SAAS;gBAAT,SAAS,GAAE,MAAM,EAAO;IAG5C,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAIlC,YAAY,CAAC,SAAS,EAAE,MAAM,EAAE,GAAG,IAAI;CAG/C"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LightweightNodeCubeDictionary = void 0;
|
|
4
|
+
class LightweightNodeCubeDictionary {
|
|
5
|
+
cubeNames;
|
|
6
|
+
constructor(cubeNames = []) {
|
|
7
|
+
this.cubeNames = cubeNames;
|
|
8
|
+
}
|
|
9
|
+
resolveCube(name) {
|
|
10
|
+
return this.cubeNames.includes(name);
|
|
11
|
+
}
|
|
12
|
+
setCubeNames(cubeNames) {
|
|
13
|
+
this.cubeNames = cubeNames;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
exports.LightweightNodeCubeDictionary = LightweightNodeCubeDictionary;
|
|
17
|
+
//# sourceMappingURL=LightweightNodeCubeDictionary.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LightweightNodeCubeDictionary.js","sourceRoot":"","sources":["../../../../src/compiler/transpilers/LightweightNodeCubeDictionary.ts"],"names":[],"mappings":";;;AAEA,MAAa,6BAA6B;IACb;IAA3B,YAA2B,YAAsB,EAAE;QAAxB,cAAS,GAAT,SAAS,CAAe;IACnD,CAAC;IAEM,WAAW,CAAC,IAAY;QAC7B,OAAO,IAAI,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;IACvC,CAAC;IAEM,YAAY,CAAC,SAAmB;QACrC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;IAC7B,CAAC;CACF;AAXD,sEAWC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TranspilerSymbolResolver } from './transpiler.interface';
|
|
2
|
+
type CubeSymbols = Record<string, Record<string, boolean>>;
|
|
3
|
+
export declare class LightweightSymbolResolver implements TranspilerSymbolResolver {
|
|
4
|
+
private symbols;
|
|
5
|
+
constructor(symbols?: CubeSymbols);
|
|
6
|
+
setSymbols(symbols: CubeSymbols): void;
|
|
7
|
+
isCurrentCube(name: any): boolean;
|
|
8
|
+
resolveSymbol(cubeName: any, name: any): any;
|
|
9
|
+
}
|
|
10
|
+
export {};
|
|
11
|
+
//# sourceMappingURL=LightweightSymbolResolver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LightweightSymbolResolver.d.ts","sourceRoot":"","sources":["../../../../src/compiler/transpilers/LightweightSymbolResolver.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAGlE,KAAK,WAAW,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC;AAE3D,qBAAa,yBAA0B,YAAW,wBAAwB;IACrD,OAAO,CAAC,OAAO;gBAAP,OAAO,GAAE,WAAgB;IAG7C,UAAU,CAAC,OAAO,EAAE,WAAW;IAI/B,aAAa,CAAC,IAAI,KAAA,GAAG,OAAO;IAI5B,aAAa,CAAC,QAAQ,KAAA,EAAE,IAAI,KAAA,GAAG,GAAG;CAY1C"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.LightweightSymbolResolver = void 0;
|
|
4
|
+
const CubeSymbols_1 = require("../CubeSymbols");
|
|
5
|
+
class LightweightSymbolResolver {
|
|
6
|
+
symbols;
|
|
7
|
+
constructor(symbols = {}) {
|
|
8
|
+
this.symbols = symbols;
|
|
9
|
+
}
|
|
10
|
+
setSymbols(symbols) {
|
|
11
|
+
this.symbols = symbols;
|
|
12
|
+
}
|
|
13
|
+
isCurrentCube(name) {
|
|
14
|
+
return CubeSymbols_1.CURRENT_CUBE_CONSTANTS.indexOf(name) >= 0;
|
|
15
|
+
}
|
|
16
|
+
resolveSymbol(cubeName, name) {
|
|
17
|
+
if (name === 'USER_CONTEXT') {
|
|
18
|
+
throw new Error('Support for USER_CONTEXT was removed, please migrate to SECURITY_CONTEXT.');
|
|
19
|
+
}
|
|
20
|
+
if (CubeSymbols_1.CONTEXT_SYMBOLS[name]) {
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
const cube = this.symbols[this.isCurrentCube(name) ? cubeName : name];
|
|
24
|
+
return cube || (this.symbols[cubeName] && this.symbols[cubeName][name]);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
exports.LightweightSymbolResolver = LightweightSymbolResolver;
|
|
28
|
+
//# sourceMappingURL=LightweightSymbolResolver.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LightweightSymbolResolver.js","sourceRoot":"","sources":["../../../../src/compiler/transpilers/LightweightSymbolResolver.ts"],"names":[],"mappings":";;;AACA,gDAAyE;AAIzE,MAAa,yBAAyB;IACT;IAA3B,YAA2B,UAAuB,EAAE;QAAzB,YAAO,GAAP,OAAO,CAAkB;IACpD,CAAC;IAEM,UAAU,CAAC,OAAoB;QACpC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IAEM,aAAa,CAAC,IAAI;QACvB,OAAO,oCAAsB,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IACnD,CAAC;IAEM,aAAa,CAAC,QAAQ,EAAE,IAAI;QACjC,IAAI,IAAI,KAAK,cAAc,EAAE;YAC3B,MAAM,IAAI,KAAK,CAAC,2EAA2E,CAAC,CAAC;SAC9F;QAED,IAAI,6BAAe,CAAC,IAAI,CAAC,EAAE;YACzB,OAAO,IAAI,CAAC;SACb;QAED,MAAM,IAAI,GAAG,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;QACtE,OAAO,IAAI,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC;IAC1E,CAAC;CACF;AAxBD,8DAwBC"}
|
|
@@ -4,4 +4,11 @@ export type TraverseObject = TraverseOptions;
|
|
|
4
4
|
export interface TranspilerInterface {
|
|
5
5
|
traverseObject(reporter: ErrorReporter): TraverseObject;
|
|
6
6
|
}
|
|
7
|
+
export interface TranspilerSymbolResolver {
|
|
8
|
+
resolveSymbol(cubeName: any, name: any): any;
|
|
9
|
+
isCurrentCube(name: any): boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface TranspilerCubeResolver {
|
|
12
|
+
resolveCube(name: any): boolean;
|
|
13
|
+
}
|
|
7
14
|
//# sourceMappingURL=transpiler.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"transpiler.interface.d.ts","sourceRoot":"","sources":["../../../../src/compiler/transpilers/transpiler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC;AAE7C,MAAM,WAAW,mBAAmB;IAClC,cAAc,CAAC,QAAQ,EAAE,aAAa,GAAG,cAAc,CAAC;CACzD"}
|
|
1
|
+
{"version":3,"file":"transpiler.interface.d.ts","sourceRoot":"","sources":["../../../../src/compiler/transpilers/transpiler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,MAAM,cAAc,GAAG,eAAe,CAAC;AAE7C,MAAM,WAAW,mBAAmB;IAClC,cAAc,CAAC,QAAQ,EAAE,aAAa,GAAG,cAAc,CAAC;CACzD;AAED,MAAM,WAAW,wBAAwB;IACvC,aAAa,CAAC,QAAQ,KAAA,EAAE,IAAI,KAAA,GAAG,GAAG,CAAC;IACnC,aAAa,CAAC,IAAI,KAAA,GAAG,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,sBAAsB;IACrC,WAAW,CAAC,IAAI,KAAA,GAAG,OAAO,CAAC;CAC5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transpiler_worker.d.ts","sourceRoot":"","sources":["../../../../src/compiler/transpilers/transpiler_worker.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const workerpool_1 = __importDefault(require("workerpool"));
|
|
7
|
+
const parser_1 = require("@babel/parser");
|
|
8
|
+
const generator_1 = __importDefault(require("@babel/generator"));
|
|
9
|
+
const traverse_1 = __importDefault(require("@babel/traverse"));
|
|
10
|
+
const ValidationTranspiler_1 = require("./ValidationTranspiler");
|
|
11
|
+
const ImportExportTranspiler_1 = require("./ImportExportTranspiler");
|
|
12
|
+
const CubeCheckDuplicatePropTranspiler_1 = require("./CubeCheckDuplicatePropTranspiler");
|
|
13
|
+
const CubePropContextTranspiler_1 = require("./CubePropContextTranspiler");
|
|
14
|
+
const ErrorReporter_1 = require("../ErrorReporter");
|
|
15
|
+
const LightweightSymbolResolver_1 = require("./LightweightSymbolResolver");
|
|
16
|
+
const LightweightNodeCubeDictionary_1 = require("./LightweightNodeCubeDictionary");
|
|
17
|
+
const cubeDictionary = new LightweightNodeCubeDictionary_1.LightweightNodeCubeDictionary();
|
|
18
|
+
const cubeSymbols = new LightweightSymbolResolver_1.LightweightSymbolResolver();
|
|
19
|
+
const errorsReport = new ErrorReporter_1.ErrorReporter(null, []);
|
|
20
|
+
const transpilers = {
|
|
21
|
+
ValidationTranspiler: new ValidationTranspiler_1.ValidationTranspiler(),
|
|
22
|
+
ImportExportTranspiler: new ImportExportTranspiler_1.ImportExportTranspiler(),
|
|
23
|
+
CubeCheckDuplicatePropTranspiler: new CubeCheckDuplicatePropTranspiler_1.CubeCheckDuplicatePropTranspiler(),
|
|
24
|
+
CubePropContextTranspiler: new CubePropContextTranspiler_1.CubePropContextTranspiler(cubeSymbols, cubeDictionary, cubeSymbols),
|
|
25
|
+
};
|
|
26
|
+
const transpile = (data) => {
|
|
27
|
+
cubeDictionary.setCubeNames(data.cubeNames);
|
|
28
|
+
cubeSymbols.setSymbols(data.cubeSymbolsNames);
|
|
29
|
+
const ast = (0, parser_1.parse)(data.content, {
|
|
30
|
+
sourceFilename: data.fileName,
|
|
31
|
+
sourceType: 'module',
|
|
32
|
+
plugins: ['objectRestSpread']
|
|
33
|
+
});
|
|
34
|
+
data.transpilers.forEach(transpilerName => {
|
|
35
|
+
if (transpilers[transpilerName]) {
|
|
36
|
+
errorsReport.inFile(data);
|
|
37
|
+
(0, traverse_1.default)(ast, transpilers[transpilerName].traverseObject(errorsReport));
|
|
38
|
+
errorsReport.exitFile();
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
throw new Error(`Transpiler ${transpilerName} not supported`);
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
const content = (0, generator_1.default)(ast, {}, data.content).code;
|
|
45
|
+
return {
|
|
46
|
+
content,
|
|
47
|
+
errors: errorsReport.getErrors(),
|
|
48
|
+
warnings: errorsReport.getWarnings()
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
workerpool_1.default.worker({
|
|
52
|
+
transpile,
|
|
53
|
+
});
|
|
54
|
+
//# sourceMappingURL=transpiler_worker.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transpiler_worker.js","sourceRoot":"","sources":["../../../../src/compiler/transpilers/transpiler_worker.ts"],"names":[],"mappings":";;;;;AAAA,4DAAoC;AACpC,0CAAsC;AACtC,iEAA8C;AAC9C,+DAA4C;AAE5C,iEAA8D;AAC9D,qEAAkE;AAClE,yFAAsF;AACtF,2EAAwE;AACxE,oDAAiD;AACjD,2EAAwE;AACxE,mFAAgF;AAUhF,MAAM,cAAc,GAAG,IAAI,6DAA6B,EAAE,CAAC;AAC3D,MAAM,WAAW,GAAG,IAAI,qDAAyB,EAAE,CAAC;AACpD,MAAM,YAAY,GAAG,IAAI,6BAAa,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;AAEjD,MAAM,WAAW,GAAG;IAClB,oBAAoB,EAAE,IAAI,2CAAoB,EAAE;IAChD,sBAAsB,EAAE,IAAI,+CAAsB,EAAE;IACpD,gCAAgC,EAAE,IAAI,mEAAgC,EAAE;IACxE,yBAAyB,EAAE,IAAI,qDAAyB,CAAC,WAAW,EAAE,cAAc,EAAE,WAAW,CAAC;CACnG,CAAC;AAEF,MAAM,SAAS,GAAG,CAAC,IAAqB,EAAE,EAAE;IAC1C,cAAc,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;IAC5C,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;IAE9C,MAAM,GAAG,GAAG,IAAA,cAAK,EACf,IAAI,CAAC,OAAO,EACZ;QACE,cAAc,EAAE,IAAI,CAAC,QAAQ;QAC7B,UAAU,EAAE,QAAQ;QACpB,OAAO,EAAE,CAAC,kBAAkB,CAAC;KAC9B,CACF,CAAC;IAEF,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE;QACxC,IAAI,WAAW,CAAC,cAAc,CAAC,EAAE;YAC/B,YAAY,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;YAC1B,IAAA,kBAAa,EAAC,GAAG,EAAE,WAAW,CAAC,cAAc,CAAC,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC,CAAC;YAC7E,YAAY,CAAC,QAAQ,EAAE,CAAC;SACzB;aAAM;YACL,MAAM,IAAI,KAAK,CAAC,cAAc,cAAc,gBAAgB,CAAC,CAAC;SAC/D;IACH,CAAC,CAAC,CAAC;IAEH,MAAM,OAAO,GAAG,IAAA,mBAAc,EAAC,GAAG,EAAE,EAAE,EAAE,IAAI,CAAC,OAAO,CAAC,CAAC,IAAI,CAAC;IAE3D,OAAO;QACL,OAAO;QACP,MAAM,EAAE,YAAY,CAAC,SAAS,EAAE;QAChC,QAAQ,EAAE,YAAY,CAAC,WAAW,EAAE;KACrC,CAAC;AACJ,CAAC,CAAC;AAEF,oBAAU,CAAC,MAAM,CAAC;IAChB,SAAS;CACV,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@cubejs-backend/schema-compiler",
|
|
3
3
|
"description": "Cube schema compiler",
|
|
4
4
|
"author": "Cube Dev, Inc.",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.1",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/cube-js/cube.git",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@babel/standalone": "^7.24",
|
|
41
41
|
"@babel/traverse": "^7.24",
|
|
42
42
|
"@babel/types": "^7.24",
|
|
43
|
-
"@cubejs-backend/native": "1.2.
|
|
44
|
-
"@cubejs-backend/shared": "1.2.
|
|
43
|
+
"@cubejs-backend/native": "1.2.1",
|
|
44
|
+
"@cubejs-backend/shared": "1.2.1",
|
|
45
45
|
"antlr4ts": "0.5.0-alpha.4",
|
|
46
46
|
"camelcase": "^6.2.0",
|
|
47
47
|
"cron-parser": "^4.9.0",
|
|
@@ -54,12 +54,13 @@
|
|
|
54
54
|
"node-dijkstra": "^2.5.0",
|
|
55
55
|
"ramda": "^0.27.2",
|
|
56
56
|
"syntax-error": "^1.3.0",
|
|
57
|
-
"uuid": "^8.3.2"
|
|
57
|
+
"uuid": "^8.3.2",
|
|
58
|
+
"workerpool": "^9.2.0"
|
|
58
59
|
},
|
|
59
60
|
"devDependencies": {
|
|
60
61
|
"@clickhouse/client": "^1.7.0",
|
|
61
|
-
"@cubejs-backend/linter": "1.2.
|
|
62
|
-
"@cubejs-backend/query-orchestrator": "1.2.
|
|
62
|
+
"@cubejs-backend/linter": "1.2.1",
|
|
63
|
+
"@cubejs-backend/query-orchestrator": "1.2.1",
|
|
63
64
|
"@types/babel__code-frame": "^7.0.6",
|
|
64
65
|
"@types/babel__generator": "^7.6.8",
|
|
65
66
|
"@types/babel__traverse": "^7.20.5",
|
|
@@ -104,5 +105,5 @@
|
|
|
104
105
|
"/node_modules/(?!node-fetch).+\\.js$"
|
|
105
106
|
]
|
|
106
107
|
},
|
|
107
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "882a4436d0b1966ec7a6a5dd7faad9c7d99a7f2a"
|
|
108
109
|
}
|