@cloudbase/oauth 2.5.1-beta.0 → 2.5.2-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/oauth",
3
- "version": "2.5.1-beta.0",
3
+ "version": "2.5.2-beta.0",
4
4
  "description": "cloudbase javascript sdk auth componets",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -34,5 +34,5 @@
34
34
  "eslint --fix"
35
35
  ]
36
36
  },
37
- "gitHead": "d5ea4b42a930720573571c534be6ba62cad8b09e"
37
+ "gitHead": "05781e14bbdec5215c8bdce7dc6bca5cec0c1952"
38
38
  }
package/tsconfig.esm.json CHANGED
@@ -1,37 +1,16 @@
1
1
  {
2
- "compileOnSave": true,
2
+ "extends": "../../tsconfig.base.json",
3
3
  "compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
- "declaration": true,
6
- "esModuleInterop": true,
7
- "experimentalDecorators": true,
8
- "emitDecoratorMetadata": true,
9
4
  "module": "es6",
10
- "noFallthroughCasesInSwitch": true,
11
- "noUnusedLocals": true,
12
- "noUnusedParameters": true,
13
5
  "outDir": "dist/esm",
14
6
  "rootDir": "src",
15
- "pretty": true,
16
7
  "noImplicitAny": false,
17
- "removeComments": true,
18
- "skipLibCheck": true,
19
- "strictBindCallApply": true,
20
- "declarationMap": false,
21
- "inlineSourceMap": true,
22
- "inlineSources": true,
23
- "target": "es5",
24
- "moduleResolution": "node",
25
8
  "typeRoots": [
26
9
  "node_modules/@types"
27
10
  ],
28
11
  "types": [
29
12
  "node"
30
13
  ],
31
- "lib": [
32
- "es2015",
33
- "dom"
34
- ]
35
14
  },
36
15
  "include": [
37
16
  "src/**/*.ts",
package/tsconfig.json CHANGED
@@ -1,37 +1,16 @@
1
1
  {
2
- "compileOnSave": true,
2
+ "extends": "../../tsconfig.base.json",
3
3
  "compilerOptions": {
4
- "allowSyntheticDefaultImports": true,
5
- "declaration": true,
6
- "esModuleInterop": true,
7
- "experimentalDecorators": true,
8
- "emitDecoratorMetadata": true,
9
4
  "module": "commonjs",
10
- "noFallthroughCasesInSwitch": true,
11
- "noUnusedLocals": true,
12
- "noUnusedParameters": true,
13
5
  "outDir": "dist/cjs",
14
6
  "rootDir": "src",
15
- "pretty": true,
16
7
  "noImplicitAny": false,
17
- "removeComments": true,
18
- "skipLibCheck": true,
19
- "strictBindCallApply": true,
20
- "declarationMap": false,
21
- "inlineSourceMap": true,
22
- "inlineSources": true,
23
- "target": "es5",
24
- "moduleResolution": "node",
25
8
  "typeRoots": [
26
9
  "node_modules/@types"
27
10
  ],
28
11
  "types": [
29
12
  "node"
30
13
  ],
31
- "lib": [
32
- "es2015",
33
- "dom"
34
- ]
35
14
  },
36
15
  "include": [
37
16
  "src/**/*.ts",
package/Dockerfile DELETED
@@ -1,15 +0,0 @@
1
- # FROM base_npm:latest
2
-
3
- # # ARG NPM_TOKEN
4
- # RUN mkdir -p /usr/src/app
5
- # WORKDIR /usr/src/app/
6
-
7
- # COPY package.json .
8
- # ADD . /usr/src/app
9
- # RUN npm set registry https://npm.xbase.xyz
10
- # RUN npm install
11
- # RUN npm run build
12
-
13
- # # @todo use semantic-release with gitlab ci to auto release with branch
14
- # # RUN npm view @xbase/sdk version
15
- # RUN npm publish