@cedarjs/auth-dbauth-setup 0.1.1 → 0.1.2-next.95
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/dist/setup.js +2 -3
- package/package.json +5 -5
package/dist/setup.js
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js/object/define-property");
|
|
4
|
-
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault").default;
|
|
5
4
|
_Object$defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
7
|
exports.builder = builder;
|
|
9
8
|
exports.handler = exports.description = exports.command = void 0;
|
|
10
|
-
var
|
|
9
|
+
var _termiLink = require("termi-link");
|
|
11
10
|
const command = exports.command = 'dbAuth';
|
|
12
11
|
const description = exports.description = 'Set up auth for for dbAuth';
|
|
13
12
|
function builder(yargs) {
|
|
@@ -31,7 +30,7 @@ function builder(yargs) {
|
|
|
31
30
|
default: null,
|
|
32
31
|
description: 'Generate auth pages (login, signup, etc.)',
|
|
33
32
|
type: 'boolean'
|
|
34
|
-
}).epilogue(`Also see the ${(0,
|
|
33
|
+
}).epilogue(`Also see the ${(0, _termiLink.terminalLink)('Redwood CLI Reference', 'https://redwoodjs.com/docs/cli-commands#setup-auth')}`);
|
|
35
34
|
}
|
|
36
35
|
const handler = async options => {
|
|
37
36
|
const {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/auth-dbauth-setup",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2-next.95+a711c9cda",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"test:watch": "yarn test --watch"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@babel/runtime-corejs3": "7.27.
|
|
28
|
-
"@cedarjs/cli-helpers": "0.1.
|
|
27
|
+
"@babel/runtime-corejs3": "7.27.6",
|
|
28
|
+
"@cedarjs/cli-helpers": "0.1.2-next.95+a711c9cda",
|
|
29
29
|
"@prisma/internals": "5.20.0",
|
|
30
30
|
"@simplewebauthn/browser": "7.4.0",
|
|
31
31
|
"core-js": "3.42.0",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"@simplewebauthn/typescript-types": "7.4.0",
|
|
39
39
|
"@types/yargs": "17.0.33",
|
|
40
40
|
"typescript": "5.6.2",
|
|
41
|
-
"vitest": "2.
|
|
41
|
+
"vitest": "3.2.4"
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "a711c9cda09da9444fb0f6ff5d9dae804d6ba72b"
|
|
47
47
|
}
|