@ttoss/cloud-auth 0.2.0
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/.turbo/turbo-build.log +17 -0
- package/CHANGELOG.md +14 -0
- package/dist/esm/index.js +7 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +33 -0
- package/package.json +20 -0
- package/src/config.ts +1 -0
- package/src/index.ts +1 -0
- package/tsconfig.json +3 -0
- package/tsup.config.ts +3 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
warning package.json: No license field
|
|
2
|
+
$ tsup
|
|
3
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
4
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
5
|
+
[34mCLI[39m tsup v6.5.0
|
|
6
|
+
[34mCLI[39m Using tsup config: /home/runner/work/ttoss/ttoss/packages/cloud-auth/tsup.config.ts
|
|
7
|
+
[34mCLI[39m Target: es2021
|
|
8
|
+
[34mCLI[39m Cleaning output folder
|
|
9
|
+
[34mCJS[39m Build start
|
|
10
|
+
[34mESM[39m Build start
|
|
11
|
+
[32mCJS[39m [1mdist/index.js [22m[32m1.19 KB[39m
|
|
12
|
+
[32mCJS[39m ⚡️ Build success in 90ms
|
|
13
|
+
[32mESM[39m [1mdist/esm/index.js [22m[32m170.00 B[39m
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 91ms
|
|
15
|
+
[34mDTS[39m Build start
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 13477ms
|
|
17
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m80.00 B[39m
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 0.2.0 (2022-12-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- publish access public ([9cd42b6](https://github.com/ttoss/ttoss/commit/9cd42b6231bf090c7a568c5fadeda34cbdb35c50))
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- add react-auth ([#97](https://github.com/ttoss/ttoss/issues/97)) ([6686ef6](https://github.com/ttoss/ttoss/commit/6686ef6f31f2125dff3fed45aaf8b8250b4ff32c))
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
"use strict";
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
7
|
+
var __export = (target, all) => {
|
|
8
|
+
for (var name in all)
|
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
|
+
};
|
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
13
|
+
for (let key of __getOwnPropNames(from))
|
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
18
|
+
};
|
|
19
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
+
|
|
21
|
+
// src/index.ts
|
|
22
|
+
var src_exports = {};
|
|
23
|
+
__export(src_exports, {
|
|
24
|
+
PASSWORD_MINIMUM_LENGTH: () => PASSWORD_MINIMUM_LENGTH
|
|
25
|
+
});
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
|
+
|
|
28
|
+
// src/config.ts
|
|
29
|
+
var PASSWORD_MINIMUM_LENGTH = 8;
|
|
30
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
31
|
+
0 && (module.exports = {
|
|
32
|
+
PASSWORD_MINIMUM_LENGTH
|
|
33
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ttoss/cloud-auth",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"main": "./dist/index.js",
|
|
5
|
+
"module": "./dist/esm/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsup"
|
|
8
|
+
},
|
|
9
|
+
"typings": "./dist/index.d.ts",
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@ttoss/config": "^1.25.0",
|
|
12
|
+
"@types/jest": "^29.2.4",
|
|
13
|
+
"jest": "^29.3.1",
|
|
14
|
+
"typescript": "^4.9.4"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"gitHead": "01759d9c247bed2fe52ca580e87c0b21544cac49"
|
|
20
|
+
}
|
package/src/config.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const PASSWORD_MINIMUM_LENGTH = 8;
|
package/src/index.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './config';
|
package/tsconfig.json
ADDED
package/tsup.config.ts
ADDED