@iushev/rbac-web-manager 1.0.0 → 1.0.2
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 +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +7 -0
- package/package.json +4 -4
- package/src/index.ts +1 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# rbac-web-manager
|
package/lib/index.d.ts
CHANGED
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC"}
|
package/lib/index.js
CHANGED
|
@@ -1 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.WebManager = void 0;
|
|
7
|
+
var WebManager_1 = require("./WebManager");
|
|
8
|
+
Object.defineProperty(exports, "WebManager", { enumerable: true, get: function () { return __importDefault(WebManager_1).default; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iushev/rbac-web-manager",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Ivaylo Ushev",
|
|
6
6
|
"description": "RBAC Web Manager",
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"main": "lib/index",
|
|
10
10
|
"types": "lib/index",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"build": "tsc",
|
|
12
|
+
"build": "rimraf ./lib && tsc",
|
|
13
13
|
"watch": "tsc -w --preserveWatchOutput",
|
|
14
14
|
"test": "jest --runInBand",
|
|
15
15
|
"test:watch": "jest --watch --runInBand",
|
|
16
16
|
"coverage": "jest --coverage --runInBand",
|
|
17
17
|
"lint": "eslint src",
|
|
18
|
-
"preversion": "
|
|
18
|
+
"preversion": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/jest": "^30.0.0",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"typescript": "^5.9.3"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@iushev/rbac": "^1.0.
|
|
35
|
+
"@iushev/rbac": "^1.0.54",
|
|
36
36
|
"axios": "^1.13.2",
|
|
37
37
|
"http-status-codes": "^2.3.0"
|
|
38
38
|
},
|
package/src/index.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as WebManager, WebManagerOptions } from "./WebManager";
|