@operato/scene-ops 10.14.0 → 10.14.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/cjs/index.js +18 -5
- package/dist/cjs/index.js.map +1 -1
- package/package.json +2 -3
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
2
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
17
|
/**
|
|
5
18
|
* @operato/scene-ops — describing a change to a scene, and carrying it out.
|
|
6
19
|
*
|
|
@@ -12,8 +25,8 @@ const tslib_1 = require("tslib");
|
|
|
12
25
|
* Nothing here knows who proposed the change. A language model, a template, an importer and
|
|
13
26
|
* a person dragging a box all produce the same operations.
|
|
14
27
|
*/
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
28
|
+
__exportStar(require("./model.js"), exports);
|
|
29
|
+
__exportStar(require("./ops.js"), exports);
|
|
30
|
+
__exportStar(require("./apply-model.js"), exports);
|
|
31
|
+
__exportStar(require("./apply-scene.js"), exports);
|
|
19
32
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;;;;;;;;GAUG;AACH,6CAA0B;AAC1B,2CAAwB;AACxB,mDAAgC;AAChC,mDAAgC","sourcesContent":["/**\n * @operato/scene-ops — describing a change to a scene, and carrying it out.\n *\n * A scene can be changed while it is stored (a JSON model in a file or a row) or while it is\n * open (a things-scene Scene with a commander behind it). Those are two appliers, but they\n * have to agree about what a change *is*, so the vocabulary and both appliers live here\n * together.\n *\n * Nothing here knows who proposed the change. A language model, a template, an importer and\n * a person dragging a box all produce the same operations.\n */\nexport * from './model.js'\nexport * from './ops.js'\nexport * from './apply-model.js'\nexport * from './apply-scene.js'\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/scene-ops",
|
|
3
|
-
"version": "10.14.
|
|
3
|
+
"version": "10.14.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/src/index.js",
|
|
@@ -45,6 +45,5 @@
|
|
|
45
45
|
"require": "./dist/cjs/index.js"
|
|
46
46
|
},
|
|
47
47
|
"./package.json": "./package.json"
|
|
48
|
-
}
|
|
49
|
-
"gitHead": "9988320c6a345eaa0b9623d6e641fee0650b6dbc"
|
|
48
|
+
}
|
|
50
49
|
}
|