pareto-core-transformer 0.1.0
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/index.d.ts +9 -0
- package/dist/index.js +23 -0
- package/package.json +27 -0
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* these functions coming from core-internals should be exposed for library development
|
|
3
|
+
*/
|
|
4
|
+
export { set, not_set, cc, au, ss, integer_division,
|
|
5
|
+
/**
|
|
6
|
+
* panic should no longer be used,
|
|
7
|
+
* if it is used in a transformation, this means it is not a transformation but a refinement
|
|
8
|
+
*/
|
|
9
|
+
panic as deprecated_panic, panic as unreachable_code_path, list_literal, dictionary_literal, block, } from "pareto-core-internals";
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.block = exports.dictionary_literal = exports.list_literal = exports.unreachable_code_path = exports.deprecated_panic = exports.integer_division = exports.ss = exports.au = exports.cc = exports.not_set = exports.set = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* these functions coming from core-internals should be exposed for library development
|
|
6
|
+
*/
|
|
7
|
+
var pareto_core_internals_1 = require("pareto-core-internals");
|
|
8
|
+
Object.defineProperty(exports, "set", { enumerable: true, get: function () { return pareto_core_internals_1.set; } });
|
|
9
|
+
Object.defineProperty(exports, "not_set", { enumerable: true, get: function () { return pareto_core_internals_1.not_set; } });
|
|
10
|
+
Object.defineProperty(exports, "cc", { enumerable: true, get: function () { return pareto_core_internals_1.cc; } });
|
|
11
|
+
Object.defineProperty(exports, "au", { enumerable: true, get: function () { return pareto_core_internals_1.au; } });
|
|
12
|
+
Object.defineProperty(exports, "ss", { enumerable: true, get: function () { return pareto_core_internals_1.ss; } });
|
|
13
|
+
Object.defineProperty(exports, "integer_division", { enumerable: true, get: function () { return pareto_core_internals_1.integer_division; } });
|
|
14
|
+
/**
|
|
15
|
+
* panic should no longer be used,
|
|
16
|
+
* if it is used in a transformation, this means it is not a transformation but a refinement
|
|
17
|
+
*/
|
|
18
|
+
Object.defineProperty(exports, "deprecated_panic", { enumerable: true, get: function () { return pareto_core_internals_1.panic; } });
|
|
19
|
+
Object.defineProperty(exports, "unreachable_code_path", { enumerable: true, get: function () { return pareto_core_internals_1.panic; } });
|
|
20
|
+
Object.defineProperty(exports, "list_literal", { enumerable: true, get: function () { return pareto_core_internals_1.list_literal; } });
|
|
21
|
+
Object.defineProperty(exports, "dictionary_literal", { enumerable: true, get: function () { return pareto_core_internals_1.dictionary_literal; } });
|
|
22
|
+
Object.defineProperty(exports, "block", { enumerable: true, get: function () { return pareto_core_internals_1.block; } });
|
|
23
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7O0dBRUc7QUFDSCwrREFvQjhCO0FBbkIxQiw0R0FBQSxHQUFHLE9BQUE7QUFDSCxnSEFBQSxPQUFPLE9BQUE7QUFDUCwyR0FBQSxFQUFFLE9BQUE7QUFDRiwyR0FBQSxFQUFFLE9BQUE7QUFDRiwyR0FBQSxFQUFFLE9BQUE7QUFDRix5SEFBQSxnQkFBZ0IsT0FBQTtBQUVoQjs7O0dBR0c7QUFDSCx5SEFBQSxLQUFLLE9BQW9CO0FBRXpCLDhIQUFBLEtBQUssT0FBeUI7QUFHOUIscUhBQUEsWUFBWSxPQUFBO0FBQ1osMkhBQUEsa0JBQWtCLE9BQUE7QUFDbEIsOEdBQUEsS0FBSyxPQUFBIn0=
|
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pareto-core-transformer",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"license": "ISC",
|
|
5
|
+
"description": "the exupery core package for developing transformer algorithms",
|
|
6
|
+
"author": "Corno",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"exupery",
|
|
9
|
+
"transformer algorithm development"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/corno/pareto-core-transformer#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/corno/pareto-core-transformer/issues"
|
|
14
|
+
},
|
|
15
|
+
"main": "./dist/index.js",
|
|
16
|
+
"types": "dist/index.d.ts",
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"pareto-core-internals": "^0.24.1"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/corno/pareto-core-transformer.git"
|
|
26
|
+
}
|
|
27
|
+
}
|