taon 21.0.10 → 21.0.12
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/README.md +3 -3
- package/browser/package.json +10 -3
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/lib/ui/index.js +2 -2
- package/lib/ui/taon-admin-mode-configuration/index.js +2 -2
- package/package.json +2 -1
- package/websql/package.json +10 -3
package/README.md
CHANGED
|
@@ -68,9 +68,9 @@ echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo s
|
|
|
68
68
|
|
|
69
69
|
|
|
70
70
|
## Required version of NodeJS
|
|
71
|
-
- Windows 10/11 >=
|
|
72
|
-
- MacOS: >=
|
|
73
|
-
- Linux: >=
|
|
71
|
+
- Windows 10/11 >= v22
|
|
72
|
+
- MacOS: >= v22
|
|
73
|
+
- Linux: >= v22
|
|
74
74
|
|
|
75
75
|
|
|
76
76
|
## How to install taon
|
package/browser/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taon/browser",
|
|
3
|
-
"version": "21.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
3
|
+
"version": "21.0.12",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2022/taon-browser.mjs",
|
|
12
|
+
"typings": "types/taon-browser.d.ts",
|
|
6
13
|
"exports": {
|
|
7
14
|
"./package.json": {
|
|
8
15
|
"default": "./package.json"
|
|
@@ -21,6 +21,6 @@ exports.PROJECT_NPM_NAME = 'taon';
|
|
|
21
21
|
/**
|
|
22
22
|
* Autogenerated by current cli tool. Use *tnp release* to bump version.
|
|
23
23
|
*/
|
|
24
|
-
exports.CURRENT_PACKAGE_VERSION = '21.0.
|
|
24
|
+
exports.CURRENT_PACKAGE_VERSION = '21.0.12';
|
|
25
25
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
26
26
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
package/lib/ui/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1766574812457 = dummy1766574812457;
|
|
4
|
+
function dummy1766574812457() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
function
|
|
3
|
+
exports.dummy1766574814323 = dummy1766574814323;
|
|
4
|
+
function dummy1766574814323() { }
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taon",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.12",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"mkdocs": "python3 -m mkdocs",
|
|
6
6
|
"taon init": "taon init",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"json10": "~21.0.0",
|
|
56
56
|
"lodash-walk-object": "~21.0.0",
|
|
57
57
|
"taon-type-sql": "~21.0.0",
|
|
58
|
+
"taon-typeorm": "~21.0.0",
|
|
58
59
|
"socket.io": "~4.8.1"
|
|
59
60
|
},
|
|
60
61
|
"description": "Isomorphic solution for backend and frontend",
|
package/websql/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taon/websql",
|
|
3
|
-
"version": "21.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
3
|
+
"version": "21.0.12",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^13.2.0",
|
|
6
|
+
"@angular/core": "^13.2.0"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.3.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2022/taon-websql.mjs",
|
|
12
|
+
"typings": "types/taon-websql.d.ts",
|
|
6
13
|
"exports": {
|
|
7
14
|
"./package.json": {
|
|
8
15
|
"default": "./package.json"
|