@holoyan/adonisjs-permissions 0.8.19 → 1.0.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/README.md +16 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Role permissions system for AdonisJS V6+
|
|
2
2
|
|
|
3
|
+
Checkout other AdonisJS packages
|
|
4
|
+
|
|
5
|
+
- [AdonisJs activity log](https://github.com/holoyan/adonisjs-activitylog)
|
|
6
|
+
|
|
3
7
|
[//]: # ([](https://github.com/holoyan/adonisjs-permissions/actions/workflows/test.yml))
|
|
4
8
|
[](https://github.com/holoyan/adonisjs-permissions/blob/master/LICENSE.md)
|
|
5
9
|
|
|
@@ -43,6 +47,7 @@
|
|
|
43
47
|
- [Cheat sheet](#cheat-sheet)
|
|
44
48
|
- [Todo](#todo)
|
|
45
49
|
- [Test](#test)
|
|
50
|
+
- [Version Map](#version-map)
|
|
46
51
|
- [License](#license)
|
|
47
52
|
</p></details>
|
|
48
53
|
|
|
@@ -72,7 +77,7 @@ To be able to use the full power of Acl, you should have a clear understanding o
|
|
|
72
77
|
|
|
73
78
|
## Installation
|
|
74
79
|
|
|
75
|
-
npm i @holoyan/adonisjs-permissions
|
|
80
|
+
npm i @holoyan/adonisjs-permissions
|
|
76
81
|
|
|
77
82
|
|
|
78
83
|
Next publish config files
|
|
@@ -1001,6 +1006,16 @@ Coming soon
|
|
|
1001
1006
|
npm run test
|
|
1002
1007
|
|
|
1003
1008
|
|
|
1009
|
+
## Version Map
|
|
1010
|
+
|
|
1011
|
+
|
|
1012
|
+
| AdonisJS Lucid version | Package version |
|
|
1013
|
+
|------------------------|-----------------|
|
|
1014
|
+
| v20.x | 0.8.x |
|
|
1015
|
+
| v21.x | 1.x |
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
|
|
1004
1019
|
## License
|
|
1005
1020
|
|
|
1006
1021
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holoyan/adonisjs-permissions",
|
|
3
3
|
"description": "Adonisjs roles and permissions system",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.1",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.16.0"
|
|
7
7
|
},
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@adonisjs/assembler": "^7.0.0",
|
|
44
44
|
"@adonisjs/core": "^6.2.0",
|
|
45
45
|
"@adonisjs/eslint-config": "^1.2.1",
|
|
46
|
-
"@adonisjs/lucid": "^
|
|
46
|
+
"@adonisjs/lucid": "^21.0.0",
|
|
47
47
|
"@adonisjs/prettier-config": "^1.2.1",
|
|
48
48
|
"@adonisjs/tsconfig": "^1.2.1",
|
|
49
49
|
"@japa/assert": "^2.1.0",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@adonisjs/core": "^6.2.0",
|
|
73
|
-
"@adonisjs/lucid": "^
|
|
73
|
+
"@adonisjs/lucid": "^21.0.0",
|
|
74
74
|
"luxon": "^3.4.4",
|
|
75
75
|
"uuid": "^9.0.1",
|
|
76
76
|
"@types/uuid": "^9.0.8"
|