@rainbow-o23/n3 1.0.34 → 1.0.35
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/index.cjs +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
- package/src/lib/step/utils.ts +1 -10
package/index.cjs
CHANGED
|
@@ -339,7 +339,7 @@ const createGlobalProxy = (ex) => {
|
|
|
339
339
|
}
|
|
340
340
|
});
|
|
341
341
|
};
|
|
342
|
-
const AvoidNames = ['global', 'process', 'eval', 'Function'
|
|
342
|
+
const AvoidNames = ['global', 'process', 'eval', 'Function'];
|
|
343
343
|
const AvoidProxyObjects = [
|
|
344
344
|
createGlobalProxy(() => {
|
|
345
345
|
throw new n1.UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_GLOBAL, 'Cannot use global in dynamic snippet.');
|
package/index.js
CHANGED
|
@@ -337,7 +337,7 @@ const createGlobalProxy = (ex) => {
|
|
|
337
337
|
}
|
|
338
338
|
});
|
|
339
339
|
};
|
|
340
|
-
const AvoidNames = ['global', 'process', 'eval', 'Function'
|
|
340
|
+
const AvoidNames = ['global', 'process', 'eval', 'Function'];
|
|
341
341
|
const AvoidProxyObjects = [
|
|
342
342
|
createGlobalProxy(() => {
|
|
343
343
|
throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_GLOBAL, 'Cannot use global in dynamic snippet.');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rainbow-o23/n3",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.35",
|
|
4
4
|
"description": "o23 pipelines",
|
|
5
5
|
"main": "index.cjs",
|
|
6
6
|
"module": "index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"url": "https://github.com/InsureMO/rainbow-o23/issues"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@rainbow-o23/n1": "1.0.
|
|
24
|
+
"@rainbow-o23/n1": "1.0.35",
|
|
25
25
|
"@theinternetfolks/snowflake": "^1.3.0",
|
|
26
26
|
"node-fetch": "2.6.7",
|
|
27
27
|
"typeorm": "^0.3.17"
|
package/src/lib/step/utils.ts
CHANGED
|
@@ -25,7 +25,7 @@ const createGlobalProxy = (ex: () => never) => {
|
|
|
25
25
|
}
|
|
26
26
|
});
|
|
27
27
|
};
|
|
28
|
-
const AvoidNames = ['global', 'process', 'eval', 'Function'
|
|
28
|
+
const AvoidNames = ['global', 'process', 'eval', 'Function'];
|
|
29
29
|
const AvoidProxyObjects = [
|
|
30
30
|
createGlobalProxy(() => {
|
|
31
31
|
throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_GLOBAL, 'Cannot use global in dynamic snippet.');
|
|
@@ -39,15 +39,6 @@ const AvoidProxyObjects = [
|
|
|
39
39
|
createGlobalProxy(() => {
|
|
40
40
|
throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_FUNCTION, 'Cannot use Function in dynamic snippet.');
|
|
41
41
|
})
|
|
42
|
-
// createGlobalProxy(() => {
|
|
43
|
-
// throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_REQUIRE, 'Cannot use require in dynamic snippet.');
|
|
44
|
-
// }),
|
|
45
|
-
// createGlobalProxy(() => {
|
|
46
|
-
// throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_MODULE, 'Cannot use module in dynamic snippet.');
|
|
47
|
-
// }),
|
|
48
|
-
// createGlobalProxy(() => {
|
|
49
|
-
// throw new UncatchableError(ERR_PIPELINE_SNIPPET_CANNOT_USE_EXPORTS, 'Cannot use exports in dynamic snippet.');
|
|
50
|
-
// })
|
|
51
42
|
];
|
|
52
43
|
|
|
53
44
|
export class Utils {
|