kt.js 0.6.12 → 0.6.14
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.legacy.js +27 -1
- package/package.json +3 -3
package/dist/index.legacy.js
CHANGED
|
@@ -1 +1,27 @@
|
|
|
1
|
-
var kt=
|
|
1
|
+
var kt = (function (exports, core, jsx, shortcuts) {
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Object.keys(core).forEach(function (k) {
|
|
7
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
8
|
+
enumerable: true,
|
|
9
|
+
get: function () { return core[k]; }
|
|
10
|
+
});
|
|
11
|
+
});
|
|
12
|
+
Object.keys(jsx).forEach(function (k) {
|
|
13
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () { return jsx[k]; }
|
|
16
|
+
});
|
|
17
|
+
});
|
|
18
|
+
Object.keys(shortcuts).forEach(function (k) {
|
|
19
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return shortcuts[k]; }
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
return exports;
|
|
26
|
+
|
|
27
|
+
})({}, __ktjs_core__, jsx, __ktjs_shortcuts__);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kt.js",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.14",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Kasukabe Tsumugi",
|
|
6
6
|
"email": "futami16237@gmail.com"
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"license": "MIT",
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@ktjs/core": "0.6.12",
|
|
45
|
-
"@ktjs/
|
|
46
|
-
"@ktjs/
|
|
45
|
+
"@ktjs/shortcuts": "0.6.6",
|
|
46
|
+
"@ktjs/jsx": "0.6.14"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
49
|
"build": "rollup -c rollup.config.mjs",
|