@alwatr/nitrobase 8.0.0 → 9.1.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/LICENSE +373 -661
- package/README.md +0 -6
- package/dist/client.js +5 -0
- package/dist/client.js.map +10 -0
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +5 -0
- package/dist/main.js.map +10 -0
- package/package.json +63 -65
- package/src/client.ts +2 -0
- package/src/main.ts +5 -0
- package/CHANGELOG.md +0 -157
- package/dist/client.cjs +0 -26
- package/dist/client.cjs.map +0 -7
- package/dist/client.mjs +0 -4
- package/dist/client.mjs.map +0 -7
- package/dist/main.cjs +0 -34
- package/dist/main.cjs.map +0 -7
- package/dist/main.mjs +0 -9
- package/dist/main.mjs.map +0 -7
package/README.md
CHANGED
|
@@ -78,12 +78,6 @@ Explore the provided demo code (`collection.mjs`, `document.mjs`, `benchmark.mjs
|
|
|
78
78
|
|
|
79
79
|
The following companies, organizations, and individuals support Nitrobase ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.
|
|
80
80
|
|
|
81
|
-
[](https://exirstudio.com)
|
|
82
|
-
|
|
83
81
|
### Contributing
|
|
84
82
|
|
|
85
83
|
Contributions are welcome! Please read our [contribution guidelines](https://github.com/Alwatr/.github/blob/next/CONTRIBUTING.md) before submitting a pull request.
|
|
86
|
-
|
|
87
|
-
### License
|
|
88
|
-
|
|
89
|
-
This project is licensed under the [AGPL-3.0 License](LICENSE).
|
package/dist/client.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/client.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"export * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": ";AAAA,sCACA",
|
|
8
|
+
"debugId": "60FC2A6E09C435DA64756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/dist/main.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../src/main.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,0BAA0B,CAAC;AACzC,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC"}
|
package/dist/main.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/* 📦 @alwatr/nitrobase v9.1.1 */
|
|
2
|
+
export*from"@alwatr/nitrobase-engine";export*from"@alwatr/nitrobase-reference";export*from"@alwatr/nitrobase-helper";export*from"@alwatr/nitrobase-types";export*from"@alwatr/nitrobase-user-management";
|
|
3
|
+
|
|
4
|
+
//# debugId=8AADB7860E1B609064756E2164756E21
|
|
5
|
+
//# sourceMappingURL=main.js.map
|
package/dist/main.js.map
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../src/main.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"export * from '@alwatr/nitrobase-engine';\nexport * from '@alwatr/nitrobase-reference';\nexport * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\nexport * from '@alwatr/nitrobase-user-management';\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": ";AAAA,sCACA,yCACA,sCACA,qCACA",
|
|
8
|
+
"debugId": "8AADB7860E1B609064756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,84 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"database",
|
|
8
|
-
"storage",
|
|
9
|
-
"json",
|
|
10
|
-
"nosql",
|
|
11
|
-
"no-sql",
|
|
12
|
-
"data",
|
|
13
|
-
"data-storage",
|
|
14
|
-
"file",
|
|
15
|
-
"typescript",
|
|
16
|
-
"esm",
|
|
17
|
-
"alwatr"
|
|
18
|
-
],
|
|
5
|
+
"license": "MPL-2.0",
|
|
6
|
+
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
|
|
19
7
|
"type": "module",
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Alwatr/alwatr",
|
|
11
|
+
"directory": "pkg/nitrobase"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://github.com/Alwatr/alwatr/tree/next/pkg/nitrobase#readme",
|
|
14
|
+
"bugs": "https://github.com/Alwatr/alwatr/issues",
|
|
23
15
|
"exports": {
|
|
24
16
|
".": {
|
|
25
17
|
"types": "./dist/main.d.ts",
|
|
26
|
-
"import": "./dist/main.
|
|
27
|
-
"
|
|
18
|
+
"import": "./dist/main.js",
|
|
19
|
+
"default": "./dist/main.js"
|
|
28
20
|
},
|
|
29
21
|
"./client": {
|
|
30
22
|
"types": "./dist/client.d.ts",
|
|
31
|
-
"
|
|
32
|
-
"require": "./dist/client.cjs"
|
|
23
|
+
"default": "./dist/client.js"
|
|
33
24
|
}
|
|
34
25
|
},
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
},
|
|
43
|
-
"repository": {
|
|
44
|
-
"type": "git",
|
|
45
|
-
"url": "https://github.com/Alwatr/nitrobase",
|
|
46
|
-
"directory": "packages/nitrobase"
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@alwatr/nitrobase-engine": "^9.1.1",
|
|
29
|
+
"@alwatr/nitrobase-helper": "^9.1.1",
|
|
30
|
+
"@alwatr/nitrobase-reference": "^9.1.1",
|
|
31
|
+
"@alwatr/nitrobase-types": "^9.1.1",
|
|
32
|
+
"@alwatr/nitrobase-user-management": "^9.1.1"
|
|
47
33
|
},
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
"
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@alwatr/nano-build": "9.1.1",
|
|
36
|
+
"@alwatr/tsconfig-base": "9.1.1",
|
|
37
|
+
"@alwatr/type-helper": "9.1.1",
|
|
38
|
+
"@types/node": "^25.5.0",
|
|
39
|
+
"typescript": "^6.0.2"
|
|
51
40
|
},
|
|
52
|
-
"prettier": "@alwatr/prettier-config",
|
|
53
41
|
"scripts": {
|
|
54
|
-
"b": "
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"cb": "yarn run clean && yarn run build",
|
|
58
|
-
"d": "yarn run build:es && yarn node",
|
|
59
|
-
"build": "yarn run build:ts & yarn run build:es",
|
|
60
|
-
"build:es": "nano-build --preset=module3",
|
|
42
|
+
"b": "bun run build",
|
|
43
|
+
"build": "bun run build:ts && bun run build:es",
|
|
44
|
+
"build:es": "nano-build --preset=module src/*.ts",
|
|
61
45
|
"build:ts": "tsc --build",
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
46
|
+
"cl": "bun run clean",
|
|
47
|
+
"clean": "rm -rfv dist *.tsbuildinfo",
|
|
48
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
49
|
+
"lint": "eslint src/ --ext .ts",
|
|
50
|
+
"t": "bun run test",
|
|
51
|
+
"test": "ALWATR_DEBUG=0 bun test",
|
|
52
|
+
"w": "bun run watch",
|
|
53
|
+
"watch": "bun run watch:ts & bun run watch:es",
|
|
54
|
+
"watch:es": "bun run build:es --watch",
|
|
55
|
+
"watch:ts": "bun run build:ts --watch --preserveWatchOutput"
|
|
66
56
|
},
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"@alwatr/nano-build": "^5.4.0",
|
|
77
|
-
"@alwatr/prettier-config": "^5.0.0",
|
|
78
|
-
"@alwatr/tsconfig-base": "^5.0.0",
|
|
79
|
-
"@alwatr/type-helper": "^5.3.0",
|
|
80
|
-
"@types/node": "^22.13.4",
|
|
81
|
-
"typescript": "^5.7.3"
|
|
57
|
+
"files": [
|
|
58
|
+
"dist",
|
|
59
|
+
"src/**/*.ts",
|
|
60
|
+
"!src/**/*.test.ts",
|
|
61
|
+
"README.md",
|
|
62
|
+
"LICENSE"
|
|
63
|
+
],
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
82
66
|
},
|
|
83
|
-
"
|
|
67
|
+
"keywords": [
|
|
68
|
+
"alwatr",
|
|
69
|
+
"data",
|
|
70
|
+
"data-storage",
|
|
71
|
+
"database",
|
|
72
|
+
"esm",
|
|
73
|
+
"file",
|
|
74
|
+
"json",
|
|
75
|
+
"no-sql",
|
|
76
|
+
"nosql",
|
|
77
|
+
"storage",
|
|
78
|
+
"typescript"
|
|
79
|
+
],
|
|
80
|
+
"prettier": "@alwatr/nanolib/prettier-config",
|
|
81
|
+
"gitHead": "38fb79dd8b6cf48108ae6492ecd7a285c7633e9b"
|
|
84
82
|
}
|
package/src/client.ts
ADDED
package/src/main.ts
ADDED
package/CHANGELOG.md
DELETED
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [8.0.0](https://github.com/Alwatr/nitrobase/compare/v7.5.9...v8.0.0) (2025-02-24)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @alwatr/nitrobase
|
|
9
|
-
|
|
10
|
-
## [7.5.8](https://github.com/Alwatr/nitrobase/compare/v7.5.7...v7.5.8) (2025-02-18)
|
|
11
|
-
|
|
12
|
-
### Dependencies update
|
|
13
|
-
|
|
14
|
-
* bump @alwatr/nanolib, @alwatr/nano-build, and @types/node to latest versions across multiple packages ([3e89c62](https://github.com/Alwatr/nitrobase/commit/3e89c62ad20f3afe0c38c6ae36d91bcb6199b231)) by @
|
|
15
|
-
* **deps-dev:** bump the dependencies group across 1 directory with 2 updates ([03715d0](https://github.com/Alwatr/nitrobase/commit/03715d0b5534b127dfb57ffe0ea713fb168eefe6)) by @dependabot[bot]
|
|
16
|
-
|
|
17
|
-
## [7.5.7](https://github.com/Alwatr/nitrobase/compare/v7.5.6...v7.5.7) (2025-02-03)
|
|
18
|
-
|
|
19
|
-
### Dependencies update
|
|
20
|
-
|
|
21
|
-
* update [@alwatr](https://github.com/alwatr) dependencies to latest versions ([f8bb10f](https://github.com/Alwatr/nitrobase/commit/f8bb10fa3343f25e2a442e80fbddb88c55fac813)) by @
|
|
22
|
-
|
|
23
|
-
## [7.5.6](https://github.com/Alwatr/nitrobase/compare/v7.5.5...v7.5.6) (2025-02-03)
|
|
24
|
-
|
|
25
|
-
**Note:** Version bump only for package @alwatr/nitrobase
|
|
26
|
-
|
|
27
|
-
## [7.5.5](https://github.com/Alwatr/nitrobase/compare/v7.5.4...v7.5.5) (2025-02-02)
|
|
28
|
-
|
|
29
|
-
### Dependencies update
|
|
30
|
-
|
|
31
|
-
* **deps-dev:** bump @types/node ([d60ee96](https://github.com/Alwatr/nitrobase/commit/d60ee96716b8df7837b3d7f9fe4b8705c94e5af0)) by @dependabot[bot]
|
|
32
|
-
* update ([0b9eccd](https://github.com/Alwatr/nitrobase/commit/0b9eccd3b54dade17e3eeb94bd08612c57356801)) by @alimd
|
|
33
|
-
|
|
34
|
-
## [7.5.4](https://github.com/Alwatr/nitrobase/compare/v7.5.3...v7.5.4) (2025-01-12)
|
|
35
|
-
|
|
36
|
-
### Dependencies update
|
|
37
|
-
|
|
38
|
-
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([fdd30a6](https://github.com/Alwatr/nitrobase/commit/fdd30a6639ae7ead4e8dbfaca0295cb2bf0e6649)) by @dependabot[bot]
|
|
39
|
-
|
|
40
|
-
## [7.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09)
|
|
41
|
-
|
|
42
|
-
### Features
|
|
43
|
-
|
|
44
|
-
* **nitrobase:** export `nitrobase-user-management` ([338e9ab](https://github.com/Alwatr/nitrobase/commit/338e9ab2699f2e532c194667e10a1aa4e795677f)) by @mohammadhonarvar
|
|
45
|
-
|
|
46
|
-
## [7.4.1](https://github.com/Alwatr/nitrobase/compare/v7.4.0...v7.4.1) (2024-11-08)
|
|
47
|
-
|
|
48
|
-
### Bug Fixes
|
|
49
|
-
|
|
50
|
-
* **nitrobase:** update build:es script to use module3 preset ([0f5c497](https://github.com/Alwatr/nitrobase/commit/0f5c4974ddf66b9d0de3a0d860f6756a05180491)) by @AliMD
|
|
51
|
-
|
|
52
|
-
## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08)
|
|
53
|
-
|
|
54
|
-
### Features
|
|
55
|
-
|
|
56
|
-
* **nitrobase:** add exports for nitrobase-helper and nitrobase-types in main.ts ([865fcc8](https://github.com/Alwatr/nitrobase/commit/865fcc89f880448fc2ce89ce576ee912c68ab5b4)) by @
|
|
57
|
-
|
|
58
|
-
### Code Refactoring
|
|
59
|
-
|
|
60
|
-
* **nitrobase:** rename helper.ts to client.ts and update exports ([c328892](https://github.com/Alwatr/nitrobase/commit/c3288925ed7f30885cd309390767c7865b8c0cee)) by @
|
|
61
|
-
* **nitrobase:** separate `export`s based on the `package`s name ([4b1f241](https://github.com/Alwatr/nitrobase/commit/4b1f24139aceda18b7a593007077652f642bb462)) by @mohammadhonarvar
|
|
62
|
-
* **nitrobase:** update `exports` & remove extra files ([c406705](https://github.com/Alwatr/nitrobase/commit/c40670587b16bbf81e5e2449be30578054abbfbe)) by @mohammadhonarvar
|
|
63
|
-
|
|
64
|
-
### Dependencies update
|
|
65
|
-
|
|
66
|
-
* bump @alwatr/nanolib from 5.2.0 to 5.2.1 across multiple packages ([e1f87b0](https://github.com/Alwatr/nitrobase/commit/e1f87b07d33e8227440256a70f012aa63410f153)) by @
|
|
67
|
-
* **deps-dev:** bump @types/node in the dependencies group ([67ffbad](https://github.com/Alwatr/nitrobase/commit/67ffbad06c95c304d47acbe46fd137fb4cf69f95)) by @dependabot[bot]
|
|
68
|
-
* **deps:** bump @alwatr/nanolib from 5.0.0 to 5.2.0 in the alwatr group ([dfa1eef](https://github.com/Alwatr/nitrobase/commit/dfa1eefb191bbaac2ff2fff410bb1d3ec615d959)) by @dependabot[bot]
|
|
69
|
-
|
|
70
|
-
## [7.3.1](https://github.com/Alwatr/nitrobase/compare/v7.3.0...v7.3.1) (2024-11-02)
|
|
71
|
-
|
|
72
|
-
### Miscellaneous Chores
|
|
73
|
-
|
|
74
|
-
* **deps-dev:** bump the development-dependencies group with 8 updates ([63f7adc](https://github.com/Alwatr/nitrobase/commit/63f7adc5ff83d4876f34d4f089a4be9b95b711a6)) by @dependabot[bot]
|
|
75
|
-
* **deps:** bump the alwatr-dependencies group with 2 updates ([20fb436](https://github.com/Alwatr/nitrobase/commit/20fb436b9f146d5ec7452a693c7af8faa32bedff)) by @dependabot[bot]
|
|
76
|
-
|
|
77
|
-
### Dependencies update
|
|
78
|
-
|
|
79
|
-
* **deps-dev:** bump @types/node in the dependencies group ([dd3e94a](https://github.com/Alwatr/nitrobase/commit/dd3e94a4c007da8fddda4cfeffe5f0763d74952e)) by @dependabot[bot]
|
|
80
|
-
* **deps:** bump the alwatr group with 6 updates ([eb9eeb1](https://github.com/Alwatr/nitrobase/commit/eb9eeb1901f7947cde783bf6f06340c984d6f59d)) by @dependabot[bot]
|
|
81
|
-
|
|
82
|
-
## [7.3.0](https://github.com/Alwatr/nitrobase/compare/v7.2.1...v7.3.0) (2024-10-11)
|
|
83
|
-
|
|
84
|
-
### Features
|
|
85
|
-
|
|
86
|
-
* update `import`s & packages based on the latest changes of `nanolib` & prevent side-effects ([0d66f89](https://github.com/Alwatr/nitrobase/commit/0d66f894dc4ff615ab73ebd27c275f98dc384fbe)) by @mohammadhonarvar
|
|
87
|
-
|
|
88
|
-
### Code Refactoring
|
|
89
|
-
|
|
90
|
-
* update `import`s & packages based on the latest changes of `nanolib` ([ce990a2](https://github.com/Alwatr/nitrobase/commit/ce990a2fedc5545e971c3bb6e58b55bfba8c0bd9)) by @mohammadhonarvar
|
|
91
|
-
|
|
92
|
-
### Miscellaneous Chores
|
|
93
|
-
|
|
94
|
-
* **deps-dev:** bump the development-dependencies group with 10 updates ([7bdcf3f](https://github.com/Alwatr/nitrobase/commit/7bdcf3f47ddb8e1376a1c7ae6e221811182bae58)) by @dependabot[bot]
|
|
95
|
-
* **deps:** bump the alwatr-dependencies group with 10 updates ([60afdde](https://github.com/Alwatr/nitrobase/commit/60afdde98562f3023e6624ee0579d6bdee80bc32)) by @dependabot[bot]
|
|
96
|
-
* **deps:** bump the alwatr-dependencies group with 6 updates ([1cf29b2](https://github.com/Alwatr/nitrobase/commit/1cf29b20055554945cd669ea9d022ab7c503d9fc)) by @dependabot[bot]
|
|
97
|
-
|
|
98
|
-
### Dependencies update
|
|
99
|
-
|
|
100
|
-
* cleanup dependencies ([91eab0b](https://github.com/Alwatr/nitrobase/commit/91eab0b0fc570b2493cccd5ccd891b01405450d7)) by @AliMD
|
|
101
|
-
|
|
102
|
-
## [7.2.1](https://github.com/Alwatr/nitrobase/compare/v7.2.0...v7.2.1) (2024-09-29)
|
|
103
|
-
|
|
104
|
-
### Bug Fixes
|
|
105
|
-
|
|
106
|
-
* **nitrobase:** export helper ([ca17b18](https://github.com/Alwatr/nitrobase/commit/ca17b18c37f5c78ec7d8afcee7affdeb31e9a946)) by @njfamirm
|
|
107
|
-
|
|
108
|
-
### Miscellaneous Chores
|
|
109
|
-
|
|
110
|
-
* **deps-dev:** bump @types/node in the development-dependencies group ([9b146d2](https://github.com/Alwatr/nitrobase/commit/9b146d2f6cf7d1d79a2a6f46a5e8f50e7fb2ac75)) by @dependabot[bot]
|
|
111
|
-
* **nitrobase:** change the license to AGPL-3.0 ([15a9859](https://github.com/Alwatr/nitrobase/commit/15a98595ebf6c6f7cb8c30715c729b7994c2169f)) by @ArmanAsadian
|
|
112
|
-
|
|
113
|
-
### Dependencies update
|
|
114
|
-
|
|
115
|
-
* update ([90a0fe1](https://github.com/Alwatr/nitrobase/commit/90a0fe146eb703c183c116776d7c5748918282da)) by @
|
|
116
|
-
|
|
117
|
-
## [7.2.0](https://github.com/Alwatr/nitrobase/compare/v7.1.1...v7.2.0) (2024-09-24)
|
|
118
|
-
|
|
119
|
-
### Code Refactoring
|
|
120
|
-
|
|
121
|
-
* rename package reference from "store" to "nitrobase" ([9d19482](https://github.com/Alwatr/nitrobase/commit/9d19482cfb15ba1332cf6fa717b71627f2d600f8)) by @AliMD
|
|
122
|
-
|
|
123
|
-
## [7.1.1](https://github.com/Alwatr/nitrobase/compare/v7.1.0...v7.1.1) (2024-09-24)
|
|
124
|
-
|
|
125
|
-
### Miscellaneous Chores
|
|
126
|
-
|
|
127
|
-
* **deps-dev:** bump the development-dependencies group across 1 directory with 3 updates ([122251c](https://github.com/Alwatr/nitrobase/commit/122251c315c422b7e9c2d5aba827f27b321194bb)) by @dependabot[bot]
|
|
128
|
-
* **deps:** bump the alwatr-dependencies group with 9 updates ([2a94694](https://github.com/Alwatr/nitrobase/commit/2a94694b2ec12c2915aa77934023328751d13837)) by @dependabot[bot]
|
|
129
|
-
|
|
130
|
-
### Dependencies update
|
|
131
|
-
|
|
132
|
-
* update ([82c475e](https://github.com/Alwatr/nitrobase/commit/82c475e29bd7f42ad03660556f40f180b3b6c9c6)) by @AliMD
|
|
133
|
-
|
|
134
|
-
## [7.1.0](https://github.com/Alwatr/nitrobase/compare/v7.0.0...v7.1.0) (2024-09-08)
|
|
135
|
-
|
|
136
|
-
### Miscellaneous Chores
|
|
137
|
-
|
|
138
|
-
* **deps-dev:** bump the development-dependencies group with 2 updates ([f6d8374](https://github.com/Alwatr/nitrobase/commit/f6d837417886ccf3719100570194434455fda365)) by @dependabot[bot]
|
|
139
|
-
|
|
140
|
-
## [7.0.0](https://github.com/Alwatr/nitrobase/compare/v7.0.0-beta.1...v7.0.0) (2024-09-02)
|
|
141
|
-
|
|
142
|
-
### Features
|
|
143
|
-
|
|
144
|
-
* Add Alwatr Nitrobase package ([a77a71b](https://github.com/Alwatr/nitrobase/commit/a77a71b883e861d7e26e058bbbc9b513770eb970)) by @AliMD
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
* **nitrobase/demo:** compatible with new apis ([a4d4d03](https://github.com/Alwatr/nitrobase/commit/a4d4d031366f798cef1e3bb36237272cbb5d12d3)) by @AliMD
|
|
149
|
-
|
|
150
|
-
### Code Refactoring
|
|
151
|
-
|
|
152
|
-
* move all demo from engine to srore package ([e34fc49](https://github.com/Alwatr/nitrobase/commit/e34fc49c71703cd287559ca4fb23f9f13842b2d0)) by @AliMD
|
|
153
|
-
* Remove unused "ALWATR_DEBUG" environment variable from build script ([26e7642](https://github.com/Alwatr/nitrobase/commit/26e764280e0a2827904762ed3de21a9966ddfc63)) by @AliMD
|
|
154
|
-
|
|
155
|
-
### Dependencies update
|
|
156
|
-
|
|
157
|
-
* update ([6411ff7](https://github.com/Alwatr/nitrobase/commit/6411ff7d49323b8bbf0dbb03fbc3c640b433a8bb)) by @
|
package/dist/client.cjs
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
/* @alwatr/nitrobase v8.0.0 */
|
|
2
|
-
"use strict";
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __copyProps = (to, from, except, desc) => {
|
|
8
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
9
|
-
for (let key of __getOwnPropNames(from))
|
|
10
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
11
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
}
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
16
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
17
|
-
var client_exports = {};
|
|
18
|
-
module.exports = __toCommonJS(client_exports);
|
|
19
|
-
__reExport(client_exports, require("@alwatr/nitrobase-helper"), module.exports);
|
|
20
|
-
__reExport(client_exports, require("@alwatr/nitrobase-types"), module.exports);
|
|
21
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
22
|
-
0 && (module.exports = {
|
|
23
|
-
...require("@alwatr/nitrobase-helper"),
|
|
24
|
-
...require("@alwatr/nitrobase-types")
|
|
25
|
-
});
|
|
26
|
-
//# sourceMappingURL=client.cjs.map
|
package/dist/client.cjs.map
DELETED
package/dist/client.mjs
DELETED
package/dist/client.mjs.map
DELETED
package/dist/main.cjs
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/* @alwatr/nitrobase v8.0.0 */
|
|
2
|
-
"use strict";
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
-
var __copyProps = (to, from, except, desc) => {
|
|
8
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
9
|
-
for (let key of __getOwnPropNames(from))
|
|
10
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
11
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
12
|
-
}
|
|
13
|
-
return to;
|
|
14
|
-
};
|
|
15
|
-
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
16
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
17
|
-
var main_exports = {};
|
|
18
|
-
module.exports = __toCommonJS(main_exports);
|
|
19
|
-
var import_nanolib = require("@alwatr/nanolib");
|
|
20
|
-
__reExport(main_exports, require("@alwatr/nitrobase-engine"), module.exports);
|
|
21
|
-
__reExport(main_exports, require("@alwatr/nitrobase-reference"), module.exports);
|
|
22
|
-
__reExport(main_exports, require("@alwatr/nitrobase-helper"), module.exports);
|
|
23
|
-
__reExport(main_exports, require("@alwatr/nitrobase-types"), module.exports);
|
|
24
|
-
__reExport(main_exports, require("@alwatr/nitrobase-user-management"), module.exports);
|
|
25
|
-
__dev_mode__: import_nanolib.packageTracer.add("@alwatr/nitrobase", "8.0.0");
|
|
26
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
27
|
-
0 && (module.exports = {
|
|
28
|
-
...require("@alwatr/nitrobase-engine"),
|
|
29
|
-
...require("@alwatr/nitrobase-reference"),
|
|
30
|
-
...require("@alwatr/nitrobase-helper"),
|
|
31
|
-
...require("@alwatr/nitrobase-types"),
|
|
32
|
-
...require("@alwatr/nitrobase-user-management")
|
|
33
|
-
});
|
|
34
|
-
//# sourceMappingURL=main.cjs.map
|
package/dist/main.cjs.map
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../src/main.ts"],
|
|
4
|
-
"sourcesContent": ["import {packageTracer} from '@alwatr/nanolib';\n\nexport * from '@alwatr/nitrobase-engine';\nexport * from '@alwatr/nitrobase-reference';\nexport * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\nexport * from '@alwatr/nitrobase-user-management';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;AAAA;AAAA;AAAA,qBAA4B;AAE5B,yBAAc,qCAFd;AAGA,yBAAc,wCAHd;AAIA,yBAAc,qCAJd;AAKA,yBAAc,oCALd;AAMA,yBAAc,8CANd;AAQA,aAAc,8BAAc,IAAI,qBAAkB,OAAmB;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
package/dist/main.mjs
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/* @alwatr/nitrobase v8.0.0 */
|
|
2
|
-
import { packageTracer } from "@alwatr/nanolib";
|
|
3
|
-
export * from "@alwatr/nitrobase-engine";
|
|
4
|
-
export * from "@alwatr/nitrobase-reference";
|
|
5
|
-
export * from "@alwatr/nitrobase-helper";
|
|
6
|
-
export * from "@alwatr/nitrobase-types";
|
|
7
|
-
export * from "@alwatr/nitrobase-user-management";
|
|
8
|
-
__dev_mode__: packageTracer.add("@alwatr/nitrobase", "8.0.0");
|
|
9
|
-
//# sourceMappingURL=main.mjs.map
|
package/dist/main.mjs.map
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../src/main.ts"],
|
|
4
|
-
"sourcesContent": ["import {packageTracer} from '@alwatr/nanolib';\n\nexport * from '@alwatr/nitrobase-engine';\nexport * from '@alwatr/nitrobase-reference';\nexport * from '@alwatr/nitrobase-helper';\nexport * from '@alwatr/nitrobase-types';\nexport * from '@alwatr/nitrobase-user-management';\n\n__dev_mode__: packageTracer.add(__package_name__, __package_version__);\n"],
|
|
5
|
-
"mappings": ";AAAA,SAAQ,qBAAoB;AAE5B,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AAEd,aAAc,eAAc,IAAI,qBAAkB,OAAmB;",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|