@holoyan/adonisjs-permissions 1.3.2 → 1.3.3
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 +7 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -89,9 +89,15 @@ await user.allow('delete', post)
|
|
|
89
89
|
To be able to use the full power of Acl, you should have a clear understanding of how it is structured and how it works. That's why the documentation will be divided into two parts: [Basic usage](#basic-usage) and [Advanced usage](#digging-deeper). For most applications, Basic Usage will be enough.
|
|
90
90
|
|
|
91
91
|
## Installation
|
|
92
|
-
|
|
92
|
+
|
|
93
|
+
For AdonisJS v7 (latest):
|
|
94
|
+
|
|
93
95
|
npm i @holoyan/adonisjs-permissions
|
|
94
96
|
|
|
97
|
+
For AdonisJS v6:
|
|
98
|
+
|
|
99
|
+
npm i @holoyan/adonisjs-permissions@v1-latest
|
|
100
|
+
|
|
95
101
|
|
|
96
102
|
Next publish config files
|
|
97
103
|
|
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": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=18.16.0"
|
|
7
7
|
},
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
},
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public",
|
|
81
|
-
"tag": "latest"
|
|
81
|
+
"tag": "v1-latest"
|
|
82
82
|
},
|
|
83
83
|
"np": {
|
|
84
84
|
"message": "chore(release): %s",
|
|
85
|
-
"tag": "latest",
|
|
86
|
-
"branch": "
|
|
85
|
+
"tag": "v1-latest",
|
|
86
|
+
"branch": "v1.3.x",
|
|
87
87
|
"anyBranch": false
|
|
88
88
|
},
|
|
89
89
|
"c8": {
|