@alwatr/nitrobase 7.10.1 → 9.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/client.js +5 -0
- package/dist/client.js.map +10 -0
- package/dist/{main.mjs → main.js} +4 -3
- package/dist/main.js.map +10 -0
- package/package.json +53 -50
- package/src/client.ts +2 -0
- package/src/main.ts +5 -0
- package/CHANGELOG.md +0 -199
- package/dist/client.cjs +0 -4
- 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 -4
- package/dist/main.cjs.map +0 -7
- package/dist/main.mjs.map +0 -7
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": "413AC4FAC498F53C64756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
__dev_mode__: console.debug("📦 @alwatr/nitrobase v7.10.1");
|
|
1
|
+
/* 📦 @alwatr/nitrobase v9.1.0 */
|
|
3
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";
|
|
4
|
-
|
|
3
|
+
|
|
4
|
+
//# debugId=02FC88BAB93EA69464756E2164756E21
|
|
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": "02FC88BAB93EA69464756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/package.json
CHANGED
|
@@ -1,38 +1,69 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nitrobase",
|
|
3
|
+
"version": "9.1.0",
|
|
3
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.",
|
|
4
|
-
"
|
|
5
|
-
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"@alwatr/nitrobase-types": "^7.10.1",
|
|
12
|
-
"@alwatr/nitrobase-user-management": "^7.10.1"
|
|
13
|
-
},
|
|
14
|
-
"devDependencies": {
|
|
15
|
-
"@alwatr/nanolib": "^7.3.4",
|
|
16
|
-
"@types/node": "^24.10.4",
|
|
17
|
-
"typescript": "^5.9.3"
|
|
5
|
+
"license": "MPL-2.0",
|
|
6
|
+
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com> (https://ali.mihandoost.com)",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/Alwatr/alwatr",
|
|
11
|
+
"directory": "pkg/nitrobase"
|
|
18
12
|
},
|
|
13
|
+
"homepage": "https://github.com/Alwatr/alwatr/tree/main/pkg/nitrobase#readme",
|
|
14
|
+
"bugs": "https://github.com/Alwatr/alwatr/issues",
|
|
19
15
|
"exports": {
|
|
20
16
|
".": {
|
|
21
17
|
"types": "./dist/main.d.ts",
|
|
22
|
-
"import": "./dist/main.
|
|
23
|
-
"
|
|
18
|
+
"import": "./dist/main.js",
|
|
19
|
+
"default": "./dist/main.js"
|
|
24
20
|
},
|
|
25
21
|
"./client": {
|
|
26
22
|
"types": "./dist/client.d.ts",
|
|
27
|
-
"
|
|
28
|
-
"require": "./dist/client.cjs"
|
|
23
|
+
"default": "./dist/client.js"
|
|
29
24
|
}
|
|
30
25
|
},
|
|
26
|
+
"sideEffects": false,
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@alwatr/nitrobase-engine": "^9.1.0",
|
|
29
|
+
"@alwatr/nitrobase-helper": "^9.1.0",
|
|
30
|
+
"@alwatr/nitrobase-reference": "^9.1.0",
|
|
31
|
+
"@alwatr/nitrobase-types": "^9.1.0",
|
|
32
|
+
"@alwatr/nitrobase-user-management": "^9.1.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@alwatr/nano-build": "9.1.0",
|
|
36
|
+
"@alwatr/tsconfig-base": "9.1.0",
|
|
37
|
+
"@alwatr/type-helper": "9.1.0",
|
|
38
|
+
"@types/node": "^25.5.0",
|
|
39
|
+
"typescript": "^6.0.2"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"b": "bun run build",
|
|
43
|
+
"build": "bun run build:ts && bun run build:es",
|
|
44
|
+
"build:es": "nano-build --preset=module src/*.ts",
|
|
45
|
+
"build:ts": "tsc --build",
|
|
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"
|
|
56
|
+
},
|
|
31
57
|
"files": [
|
|
32
|
-
"
|
|
33
|
-
"
|
|
58
|
+
"dist",
|
|
59
|
+
"src/**/*.ts",
|
|
60
|
+
"!src/**/*.test.ts",
|
|
61
|
+
"README.md",
|
|
62
|
+
"LICENSE"
|
|
34
63
|
],
|
|
35
|
-
"
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
66
|
+
},
|
|
36
67
|
"keywords": [
|
|
37
68
|
"alwatr",
|
|
38
69
|
"data",
|
|
@@ -46,34 +77,6 @@
|
|
|
46
77
|
"storage",
|
|
47
78
|
"typescript"
|
|
48
79
|
],
|
|
49
|
-
"license": "MPL-2.0",
|
|
50
|
-
"main": "./dist/main.cjs",
|
|
51
|
-
"module": "./dist/main.mjs",
|
|
52
80
|
"prettier": "@alwatr/nanolib/prettier-config",
|
|
53
|
-
"
|
|
54
|
-
"access": "public"
|
|
55
|
-
},
|
|
56
|
-
"repository": {
|
|
57
|
-
"type": "git",
|
|
58
|
-
"url": "https://github.com/Alwatr/nitrobase",
|
|
59
|
-
"directory": "packages/nitrobase"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"b": "yarn run build",
|
|
63
|
-
"build": "yarn run build:ts & yarn run build:es",
|
|
64
|
-
"build:es": "nano-build --preset=module3",
|
|
65
|
-
"build:ts": "tsc --build",
|
|
66
|
-
"c": "yarn run clean",
|
|
67
|
-
"cb": "yarn run clean && yarn run build",
|
|
68
|
-
"clean": "rm -rfv dist *.tsbuildinfo",
|
|
69
|
-
"d": "yarn run build:es && yarn node",
|
|
70
|
-
"w": "yarn run watch",
|
|
71
|
-
"watch": "yarn run watch:ts & yarn run watch:es",
|
|
72
|
-
"watch:es": "yarn run build:es --watch",
|
|
73
|
-
"watch:ts": "yarn run build:ts --watch --preserveWatchOutput"
|
|
74
|
-
},
|
|
75
|
-
"sideEffects": false,
|
|
76
|
-
"type": "module",
|
|
77
|
-
"types": "./dist/main.d.ts",
|
|
78
|
-
"gitHead": "e23943a279d6b0905b205c0c17b2b3249efab226"
|
|
81
|
+
"gitHead": "4a25cd3e0499cf61dd761e87d3711abf9b0cd208"
|
|
79
82
|
}
|
package/src/client.ts
ADDED
package/src/main.ts
ADDED
package/CHANGELOG.md
DELETED
|
@@ -1,199 +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
|
-
## [7.10.1](https://github.com/Alwatr/nitrobase/compare/v7.10.0...v7.10.1) (2025-12-14)
|
|
7
|
-
|
|
8
|
-
### 🧹 Miscellaneous Chores
|
|
9
|
-
|
|
10
|
-
* update tsconfig extends to use @alwatr/nanolib ([ffbc8ce](https://github.com/Alwatr/nitrobase/commit/ffbc8ce74d47d7f4e1ff0061722df10f68af11cc))
|
|
11
|
-
|
|
12
|
-
### 🔗 Dependencies update
|
|
13
|
-
|
|
14
|
-
* update `@alwatr/nanolib` and `@types/node` dependencies across all packages. ([bc6d96f](https://github.com/Alwatr/nitrobase/commit/bc6d96f4fd423bcfb817d74b526596669d8a8aed))
|
|
15
|
-
* update devDependencies and switch prettier config to @alwatr/nanolib ([bb4f564](https://github.com/Alwatr/nitrobase/commit/bb4f564a76b4a123c13bb6deb24aa7b1faccff68))
|
|
16
|
-
|
|
17
|
-
## [7.10.0](https://github.com/Alwatr/nitrobase/compare/v7.9.0...v7.10.0) (2025-09-21)
|
|
18
|
-
|
|
19
|
-
### 🐛 Bug Fixes
|
|
20
|
-
|
|
21
|
-
* add "sideEffects": false to package.json files for better tree-shaking ([cb6f75b](https://github.com/Alwatr/nitrobase/commit/cb6f75b86eb7dba6812aaad5136fcd867e885562))
|
|
22
|
-
* remove unused packageTracer import from main.ts ([6f0fc64](https://github.com/Alwatr/nitrobase/commit/6f0fc64b8c320d500da5af4de2e5435cca5469ff))
|
|
23
|
-
|
|
24
|
-
### 🧹 Miscellaneous Chores
|
|
25
|
-
|
|
26
|
-
* remove Exir Studio sponsorship logo from multiple README files ([506459f](https://github.com/Alwatr/nitrobase/commit/506459fea7d29b97e478da562590dd202ce7e833))
|
|
27
|
-
* remove unused types from tsconfig.json files and update references ([b504ced](https://github.com/Alwatr/nitrobase/commit/b504ced4a8f98de4fe79a2c974937278bd4e46cb))
|
|
28
|
-
* Update license from AGPL-3.0 to MPL-2.0 ([af1746e](https://github.com/Alwatr/nitrobase/commit/af1746ee9a3786c1cb2e0014f138e9f3b7086b8d))
|
|
29
|
-
* update package.json files across all packages for consistency and improved metadata ([647900d](https://github.com/Alwatr/nitrobase/commit/647900d9966f8df275c4e2ef0550c501be38ece0))
|
|
30
|
-
|
|
31
|
-
### 🔗 Dependencies update
|
|
32
|
-
|
|
33
|
-
* update dependencies in package.json files across all packages to latest versions ([72c20ef](https://github.com/Alwatr/nitrobase/commit/72c20efbc1cac9825fb4880772e3fad797d74a23))
|
|
34
|
-
|
|
35
|
-
## [7.8.0](https://github.com/Alwatr/nitrobase/compare/v7.7.0...v7.8.0) (2025-03-06)
|
|
36
|
-
|
|
37
|
-
### Dependencies update
|
|
38
|
-
|
|
39
|
-
* **deps-dev:** bump the dependencies group across 1 directory with 5 updates ([fe6ab37](https://github.com/Alwatr/nitrobase/commit/fe6ab37263f609f8bce8398462b7105b8e5a55fe)) by @dependabot[bot]
|
|
40
|
-
* update @alwatr/nanolib, @alwatr/nano-build, and @alwatr/type-helper to latest versions ([5f3f89b](https://github.com/Alwatr/nitrobase/commit/5f3f89b1236f66e9167957d60d43c8d0abff108d)) by @
|
|
41
|
-
|
|
42
|
-
## [7.7.0](https://github.com/Alwatr/nitrobase/compare/v7.6.1...v7.7.0) (2025-02-26)
|
|
43
|
-
|
|
44
|
-
**Note:** Version bump only for package @alwatr/nitrobase
|
|
45
|
-
|
|
46
|
-
## [7.6.0](https://github.com/Alwatr/nitrobase/compare/v7.5.9...v7.6.0) (2025-02-26)
|
|
47
|
-
|
|
48
|
-
### Miscellaneous Chores
|
|
49
|
-
|
|
50
|
-
* rollback all versions ([9ff6c11](https://github.com/Alwatr/nitrobase/commit/9ff6c11ef3e44ea669a814da73ed39ddc2c8e971)) by @alimd
|
|
51
|
-
|
|
52
|
-
## [7.5.8](https://github.com/Alwatr/nitrobase/compare/v7.5.7...v7.5.8) (2025-02-18)
|
|
53
|
-
|
|
54
|
-
### Dependencies update
|
|
55
|
-
|
|
56
|
-
* bump @alwatr/nanolib, @alwatr/nano-build, and @types/node to latest versions across multiple packages ([3e89c62](https://github.com/Alwatr/nitrobase/commit/3e89c62ad20f3afe0c38c6ae36d91bcb6199b231)) by @
|
|
57
|
-
* **deps-dev:** bump the dependencies group across 1 directory with 2 updates ([03715d0](https://github.com/Alwatr/nitrobase/commit/03715d0b5534b127dfb57ffe0ea713fb168eefe6)) by @dependabot[bot]
|
|
58
|
-
|
|
59
|
-
## [7.5.7](https://github.com/Alwatr/nitrobase/compare/v7.5.6...v7.5.7) (2025-02-03)
|
|
60
|
-
|
|
61
|
-
### Dependencies update
|
|
62
|
-
|
|
63
|
-
* update [@alwatr](https://github.com/alwatr) dependencies to latest versions ([f8bb10f](https://github.com/Alwatr/nitrobase/commit/f8bb10fa3343f25e2a442e80fbddb88c55fac813)) by @
|
|
64
|
-
|
|
65
|
-
## [7.5.6](https://github.com/Alwatr/nitrobase/compare/v7.5.5...v7.5.6) (2025-02-03)
|
|
66
|
-
|
|
67
|
-
**Note:** Version bump only for package @alwatr/nitrobase
|
|
68
|
-
|
|
69
|
-
## [7.5.5](https://github.com/Alwatr/nitrobase/compare/v7.5.4...v7.5.5) (2025-02-02)
|
|
70
|
-
|
|
71
|
-
### Dependencies update
|
|
72
|
-
|
|
73
|
-
* **deps-dev:** bump @types/node ([d60ee96](https://github.com/Alwatr/nitrobase/commit/d60ee96716b8df7837b3d7f9fe4b8705c94e5af0)) by @dependabot[bot]
|
|
74
|
-
* update ([0b9eccd](https://github.com/Alwatr/nitrobase/commit/0b9eccd3b54dade17e3eeb94bd08612c57356801)) by @alimd
|
|
75
|
-
|
|
76
|
-
## [7.5.4](https://github.com/Alwatr/nitrobase/compare/v7.5.3...v7.5.4) (2025-01-12)
|
|
77
|
-
|
|
78
|
-
### Dependencies update
|
|
79
|
-
|
|
80
|
-
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([fdd30a6](https://github.com/Alwatr/nitrobase/commit/fdd30a6639ae7ead4e8dbfaca0295cb2bf0e6649)) by @dependabot[bot]
|
|
81
|
-
|
|
82
|
-
## [7.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09)
|
|
83
|
-
|
|
84
|
-
### Features
|
|
85
|
-
|
|
86
|
-
* **nitrobase:** export `nitrobase-user-management` ([338e9ab](https://github.com/Alwatr/nitrobase/commit/338e9ab2699f2e532c194667e10a1aa4e795677f)) by @mohammadhonarvar
|
|
87
|
-
|
|
88
|
-
## [7.4.1](https://github.com/Alwatr/nitrobase/compare/v7.4.0...v7.4.1) (2024-11-08)
|
|
89
|
-
|
|
90
|
-
### Bug Fixes
|
|
91
|
-
|
|
92
|
-
* **nitrobase:** update build:es script to use module3 preset ([0f5c497](https://github.com/Alwatr/nitrobase/commit/0f5c4974ddf66b9d0de3a0d860f6756a05180491)) by @AliMD
|
|
93
|
-
|
|
94
|
-
## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08)
|
|
95
|
-
|
|
96
|
-
### Features
|
|
97
|
-
|
|
98
|
-
* **nitrobase:** add exports for nitrobase-helper and nitrobase-types in main.ts ([865fcc8](https://github.com/Alwatr/nitrobase/commit/865fcc89f880448fc2ce89ce576ee912c68ab5b4)) by @
|
|
99
|
-
|
|
100
|
-
### Code Refactoring
|
|
101
|
-
|
|
102
|
-
* **nitrobase:** rename helper.ts to client.ts and update exports ([c328892](https://github.com/Alwatr/nitrobase/commit/c3288925ed7f30885cd309390767c7865b8c0cee)) by @
|
|
103
|
-
* **nitrobase:** separate `export`s based on the `package`s name ([4b1f241](https://github.com/Alwatr/nitrobase/commit/4b1f24139aceda18b7a593007077652f642bb462)) by @mohammadhonarvar
|
|
104
|
-
* **nitrobase:** update `exports` & remove extra files ([c406705](https://github.com/Alwatr/nitrobase/commit/c40670587b16bbf81e5e2449be30578054abbfbe)) by @mohammadhonarvar
|
|
105
|
-
|
|
106
|
-
### Dependencies update
|
|
107
|
-
|
|
108
|
-
* bump @alwatr/nanolib from 5.2.0 to 5.2.1 across multiple packages ([e1f87b0](https://github.com/Alwatr/nitrobase/commit/e1f87b07d33e8227440256a70f012aa63410f153)) by @
|
|
109
|
-
* **deps-dev:** bump @types/node in the dependencies group ([67ffbad](https://github.com/Alwatr/nitrobase/commit/67ffbad06c95c304d47acbe46fd137fb4cf69f95)) by @dependabot[bot]
|
|
110
|
-
* **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]
|
|
111
|
-
|
|
112
|
-
## [7.3.1](https://github.com/Alwatr/nitrobase/compare/v7.3.0...v7.3.1) (2024-11-02)
|
|
113
|
-
|
|
114
|
-
### Miscellaneous Chores
|
|
115
|
-
|
|
116
|
-
* **deps-dev:** bump the development-dependencies group with 8 updates ([63f7adc](https://github.com/Alwatr/nitrobase/commit/63f7adc5ff83d4876f34d4f089a4be9b95b711a6)) by @dependabot[bot]
|
|
117
|
-
* **deps:** bump the alwatr-dependencies group with 2 updates ([20fb436](https://github.com/Alwatr/nitrobase/commit/20fb436b9f146d5ec7452a693c7af8faa32bedff)) by @dependabot[bot]
|
|
118
|
-
|
|
119
|
-
### Dependencies update
|
|
120
|
-
|
|
121
|
-
* **deps-dev:** bump @types/node in the dependencies group ([dd3e94a](https://github.com/Alwatr/nitrobase/commit/dd3e94a4c007da8fddda4cfeffe5f0763d74952e)) by @dependabot[bot]
|
|
122
|
-
* **deps:** bump the alwatr group with 6 updates ([eb9eeb1](https://github.com/Alwatr/nitrobase/commit/eb9eeb1901f7947cde783bf6f06340c984d6f59d)) by @dependabot[bot]
|
|
123
|
-
|
|
124
|
-
## [7.3.0](https://github.com/Alwatr/nitrobase/compare/v7.2.1...v7.3.0) (2024-10-11)
|
|
125
|
-
|
|
126
|
-
### Features
|
|
127
|
-
|
|
128
|
-
* update `import`s & packages based on the latest changes of `nanolib` & prevent side-effects ([0d66f89](https://github.com/Alwatr/nitrobase/commit/0d66f894dc4ff615ab73ebd27c275f98dc384fbe)) by @mohammadhonarvar
|
|
129
|
-
|
|
130
|
-
### Code Refactoring
|
|
131
|
-
|
|
132
|
-
* update `import`s & packages based on the latest changes of `nanolib` ([ce990a2](https://github.com/Alwatr/nitrobase/commit/ce990a2fedc5545e971c3bb6e58b55bfba8c0bd9)) by @mohammadhonarvar
|
|
133
|
-
|
|
134
|
-
### Miscellaneous Chores
|
|
135
|
-
|
|
136
|
-
* **deps-dev:** bump the development-dependencies group with 10 updates ([7bdcf3f](https://github.com/Alwatr/nitrobase/commit/7bdcf3f47ddb8e1376a1c7ae6e221811182bae58)) by @dependabot[bot]
|
|
137
|
-
* **deps:** bump the alwatr-dependencies group with 10 updates ([60afdde](https://github.com/Alwatr/nitrobase/commit/60afdde98562f3023e6624ee0579d6bdee80bc32)) by @dependabot[bot]
|
|
138
|
-
* **deps:** bump the alwatr-dependencies group with 6 updates ([1cf29b2](https://github.com/Alwatr/nitrobase/commit/1cf29b20055554945cd669ea9d022ab7c503d9fc)) by @dependabot[bot]
|
|
139
|
-
|
|
140
|
-
### Dependencies update
|
|
141
|
-
|
|
142
|
-
* cleanup dependencies ([91eab0b](https://github.com/Alwatr/nitrobase/commit/91eab0b0fc570b2493cccd5ccd891b01405450d7)) by @AliMD
|
|
143
|
-
|
|
144
|
-
## [7.2.1](https://github.com/Alwatr/nitrobase/compare/v7.2.0...v7.2.1) (2024-09-29)
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
* **nitrobase:** export helper ([ca17b18](https://github.com/Alwatr/nitrobase/commit/ca17b18c37f5c78ec7d8afcee7affdeb31e9a946)) by @njfamirm
|
|
149
|
-
|
|
150
|
-
### Miscellaneous Chores
|
|
151
|
-
|
|
152
|
-
* **deps-dev:** bump @types/node in the development-dependencies group ([9b146d2](https://github.com/Alwatr/nitrobase/commit/9b146d2f6cf7d1d79a2a6f46a5e8f50e7fb2ac75)) by @dependabot[bot]
|
|
153
|
-
* **nitrobase:** change the license to AGPL-3.0 ([15a9859](https://github.com/Alwatr/nitrobase/commit/15a98595ebf6c6f7cb8c30715c729b7994c2169f)) by @ArmanAsadian
|
|
154
|
-
|
|
155
|
-
### Dependencies update
|
|
156
|
-
|
|
157
|
-
* update ([90a0fe1](https://github.com/Alwatr/nitrobase/commit/90a0fe146eb703c183c116776d7c5748918282da)) by @
|
|
158
|
-
|
|
159
|
-
## [7.2.0](https://github.com/Alwatr/nitrobase/compare/v7.1.1...v7.2.0) (2024-09-24)
|
|
160
|
-
|
|
161
|
-
### Code Refactoring
|
|
162
|
-
|
|
163
|
-
* rename package reference from "store" to "nitrobase" ([9d19482](https://github.com/Alwatr/nitrobase/commit/9d19482cfb15ba1332cf6fa717b71627f2d600f8)) by @AliMD
|
|
164
|
-
|
|
165
|
-
## [7.1.1](https://github.com/Alwatr/nitrobase/compare/v7.1.0...v7.1.1) (2024-09-24)
|
|
166
|
-
|
|
167
|
-
### Miscellaneous Chores
|
|
168
|
-
|
|
169
|
-
* **deps-dev:** bump the development-dependencies group across 1 directory with 3 updates ([122251c](https://github.com/Alwatr/nitrobase/commit/122251c315c422b7e9c2d5aba827f27b321194bb)) by @dependabot[bot]
|
|
170
|
-
* **deps:** bump the alwatr-dependencies group with 9 updates ([2a94694](https://github.com/Alwatr/nitrobase/commit/2a94694b2ec12c2915aa77934023328751d13837)) by @dependabot[bot]
|
|
171
|
-
|
|
172
|
-
### Dependencies update
|
|
173
|
-
|
|
174
|
-
* update ([82c475e](https://github.com/Alwatr/nitrobase/commit/82c475e29bd7f42ad03660556f40f180b3b6c9c6)) by @AliMD
|
|
175
|
-
|
|
176
|
-
## [7.1.0](https://github.com/Alwatr/nitrobase/compare/v7.0.0...v7.1.0) (2024-09-08)
|
|
177
|
-
|
|
178
|
-
### Miscellaneous Chores
|
|
179
|
-
|
|
180
|
-
* **deps-dev:** bump the development-dependencies group with 2 updates ([f6d8374](https://github.com/Alwatr/nitrobase/commit/f6d837417886ccf3719100570194434455fda365)) by @dependabot[bot]
|
|
181
|
-
|
|
182
|
-
## [7.0.0](https://github.com/Alwatr/nitrobase/compare/v7.0.0-beta.1...v7.0.0) (2024-09-02)
|
|
183
|
-
|
|
184
|
-
### Features
|
|
185
|
-
|
|
186
|
-
* Add Alwatr Nitrobase package ([a77a71b](https://github.com/Alwatr/nitrobase/commit/a77a71b883e861d7e26e058bbbc9b513770eb970)) by @AliMD
|
|
187
|
-
|
|
188
|
-
### Bug Fixes
|
|
189
|
-
|
|
190
|
-
* **nitrobase/demo:** compatible with new apis ([a4d4d03](https://github.com/Alwatr/nitrobase/commit/a4d4d031366f798cef1e3bb36237272cbb5d12d3)) by @AliMD
|
|
191
|
-
|
|
192
|
-
### Code Refactoring
|
|
193
|
-
|
|
194
|
-
* move all demo from engine to srore package ([e34fc49](https://github.com/Alwatr/nitrobase/commit/e34fc49c71703cd287559ca4fb23f9f13842b2d0)) by @AliMD
|
|
195
|
-
* Remove unused "ALWATR_DEBUG" environment variable from build script ([26e7642](https://github.com/Alwatr/nitrobase/commit/26e764280e0a2827904762ed3de21a9966ddfc63)) by @AliMD
|
|
196
|
-
|
|
197
|
-
### Dependencies update
|
|
198
|
-
|
|
199
|
-
* update ([6411ff7](https://github.com/Alwatr/nitrobase/commit/6411ff7d49323b8bbf0dbb03fbc3c640b433a8bb)) by @
|
package/dist/client.cjs
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
/** 📦 @alwatr/nitrobase v7.10.1 */
|
|
2
|
-
__dev_mode__: console.debug("📦 @alwatr/nitrobase v7.10.1");
|
|
3
|
-
"use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __reExport=(target,mod,secondTarget)=>(__copyProps(target,mod,"default"),secondTarget&&__copyProps(secondTarget,mod,"default"));var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var client_exports={};module.exports=__toCommonJS(client_exports);__reExport(client_exports,require("@alwatr/nitrobase-helper"),module.exports);__reExport(client_exports,require("@alwatr/nitrobase-types"),module.exports);0&&(module.exports={...require("@alwatr/nitrobase-helper"),...require("@alwatr/nitrobase-types")});
|
|
4
|
-
//# 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,4 +0,0 @@
|
|
|
1
|
-
/** 📦 @alwatr/nitrobase v7.10.1 */
|
|
2
|
-
__dev_mode__: console.debug("📦 @alwatr/nitrobase v7.10.1");
|
|
3
|
-
"use strict";var __defProp=Object.defineProperty;var __getOwnPropDesc=Object.getOwnPropertyDescriptor;var __getOwnPropNames=Object.getOwnPropertyNames;var __hasOwnProp=Object.prototype.hasOwnProperty;var __copyProps=(to,from,except,desc)=>{if(from&&typeof from==="object"||typeof from==="function"){for(let key of __getOwnPropNames(from))if(!__hasOwnProp.call(to,key)&&key!==except)__defProp(to,key,{get:()=>from[key],enumerable:!(desc=__getOwnPropDesc(from,key))||desc.enumerable})}return to};var __reExport=(target,mod,secondTarget)=>(__copyProps(target,mod,"default"),secondTarget&&__copyProps(secondTarget,mod,"default"));var __toCommonJS=mod=>__copyProps(__defProp({},"__esModule",{value:true}),mod);var main_exports={};module.exports=__toCommonJS(main_exports);__reExport(main_exports,require("@alwatr/nitrobase-engine"),module.exports);__reExport(main_exports,require("@alwatr/nitrobase-reference"),module.exports);__reExport(main_exports,require("@alwatr/nitrobase-helper"),module.exports);__reExport(main_exports,require("@alwatr/nitrobase-types"),module.exports);__reExport(main_exports,require("@alwatr/nitrobase-user-management"),module.exports);0&&(module.exports={...require("@alwatr/nitrobase-engine"),...require("@alwatr/nitrobase-reference"),...require("@alwatr/nitrobase-helper"),...require("@alwatr/nitrobase-types"),...require("@alwatr/nitrobase-user-management")});
|
|
4
|
-
//# 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": ["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"],
|
|
5
|
-
"mappings": ";;isBAAA,sFAAc,oCAAd,gBACA,wBAAc,uCADd,gBAEA,wBAAc,oCAFd,gBAGA,wBAAc,mCAHd,gBAIA,wBAAc,6CAJd",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|
package/dist/main.mjs.map
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../src/main.ts"],
|
|
4
|
-
"sourcesContent": ["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"],
|
|
5
|
-
"mappings": ";;AAAA,WAAc,2BACd,WAAc,8BACd,WAAc,2BACd,WAAc,0BACd,WAAc",
|
|
6
|
-
"names": []
|
|
7
|
-
}
|