mbkauthe 1.4.0 → 1.4.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/.github/PACKAGE.md +17 -0
- package/.github/workflows/publish.yml +14 -2
- package/docs/api.md +1 -1
- package/package.json +4 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Package Information
|
|
2
|
+
|
|
3
|
+
This package is published on npm: [mbkauthe](https://www.npmjs.com/package/mbkauthe)
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install mbkauthe
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Version
|
|
12
|
+
|
|
13
|
+
Current Version: 1.4.1
|
|
14
|
+
|
|
15
|
+
## Registry
|
|
16
|
+
|
|
17
|
+
Published to: npm Registry (https://registry.npmjs.org/)
|
|
@@ -18,7 +18,7 @@ jobs:
|
|
|
18
18
|
- name: Checkout code
|
|
19
19
|
uses: actions/checkout@v3
|
|
20
20
|
|
|
21
|
-
- name: Setup Node.js
|
|
21
|
+
- name: Setup Node.js for npm
|
|
22
22
|
uses: actions/setup-node@v3
|
|
23
23
|
with:
|
|
24
24
|
node-version: '18'
|
|
@@ -39,4 +39,16 @@ jobs:
|
|
|
39
39
|
- name: Publish to npm
|
|
40
40
|
run: npm publish
|
|
41
41
|
env:
|
|
42
|
-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
42
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
43
|
+
|
|
44
|
+
- name: Setup Node.js for GitHub Packages
|
|
45
|
+
uses: actions/setup-node@v3
|
|
46
|
+
with:
|
|
47
|
+
node-version: '18'
|
|
48
|
+
registry-url: 'https://npm.pkg.github.com'
|
|
49
|
+
scope: '@MIbnEKhalid'
|
|
50
|
+
|
|
51
|
+
- name: Publish to GitHub Packages
|
|
52
|
+
run: npm publish
|
|
53
|
+
env:
|
|
54
|
+
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
package/docs/api.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mbkauthe",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "MBKTechStudio's reusable authentication system for Node.js applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -25,6 +25,9 @@
|
|
|
25
25
|
"url": "https://github.com/MIbnEKhalid/mbkauthe/issues"
|
|
26
26
|
},
|
|
27
27
|
"homepage": "https://github.com/MIbnEKhalid/mbkauthe#readme",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"registry": "https://registry.npmjs.org/"
|
|
30
|
+
},
|
|
28
31
|
"dependencies": {
|
|
29
32
|
"bcrypt": "^6.0.0",
|
|
30
33
|
"cheerio": "^1.0.0",
|