alp-node-auth 6.0.1 → 6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +0 -1
  3. package/package.json +9 -27
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.2](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.1...alp-node-auth@6.0.2) (2022-01-02)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * extra entries ([fbfb15f](https://github.com/christophehurpeau/alp/commit/fbfb15fd4cfc474ccb803105fb8ece71414a6f5d))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [6.0.1](https://github.com/christophehurpeau/alp/compare/alp-node-auth@6.0.0...alp-node-auth@6.0.1) (2022-01-02)
7
18
 
8
19
  **Note:** Version bump only for package alp-node-auth
package/README.md CHANGED
@@ -46,7 +46,6 @@ export default new UsersManager(new MongoStore('users'));
46
46
 
47
47
  ```js
48
48
  import Alp from 'alp-node';
49
- import 'alp-node/fetch';
50
49
  import authInit from 'alp-node-auth';
51
50
  import googleStrategy from 'alp-node-auth/strategies/google';
52
51
  import * as loginModuleDescriptor from './modules/auth/login';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "alp-node-auth",
3
- "version": "6.0.1",
3
+ "version": "6.0.2",
4
4
  "description": "authentication with alp",
5
5
  "keywords": [
6
6
  "alp"
@@ -33,30 +33,12 @@
33
33
  "import": "./dist/index-node14.mjs"
34
34
  }
35
35
  },
36
- "./strategies/dropbox": {
37
- "import": "./strategies/dropbox.mjs",
38
- "require": "./strategies/dropbox.js"
39
- },
40
- "./strategies/facebook": {
41
- "import": "./strategies/facebook.mjs",
42
- "require": "./strategies/facebook.js"
43
- },
44
- "./strategies/foursquare": {
45
- "import": "./strategies/foursquare.mjs",
46
- "require": "./strategies/foursquare.js"
47
- },
48
- "./strategies/github": {
49
- "import": "./strategies/github.mjs",
50
- "require": "./strategies/github.js"
51
- },
52
- "./strategies/google": {
53
- "import": "./strategies/google.mjs",
54
- "require": "./strategies/google.js"
55
- },
56
- "./strategies/slack": {
57
- "import": "./strategies/slack.mjs",
58
- "require": "./strategies/slack.js"
59
- }
36
+ "./strategies/dropbox": "./strategies/dropbox.js",
37
+ "./strategies/facebook": "./strategies/facebook.js",
38
+ "./strategies/foursquare": "./strategies/foursquare.js",
39
+ "./strategies/github": "./strategies/github.js",
40
+ "./strategies/google": "./strategies/google.js",
41
+ "./strategies/slack": "./strategies/slack.js"
60
42
  },
61
43
  "module:node": "./dist/index-node14.mjs",
62
44
  "sideEffects": false,
@@ -111,11 +93,11 @@
111
93
  },
112
94
  "devDependencies": {
113
95
  "@babel/core": "7.16.7",
114
- "alp-node": "4.0.1",
96
+ "alp-node": "4.0.2",
115
97
  "alp-router": "5.1.0",
116
98
  "liwi-mongo": "8.3.1",
117
99
  "pob-babel": "29.6.1",
118
100
  "typescript": "4.5.4"
119
101
  },
120
- "gitHead": "653c5167523d0ad22629bd63236d500193247659"
102
+ "gitHead": "c6eb2cd21ffe46263c09a0f070b9bc09f4216350"
121
103
  }