@cloudbase/realtime 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/.eslintrc.js +0 -31
- package/package.json +3 -3
- package/tsconfig.esm.json +1 -19
- package/tsconfig.json +1 -19
package/.eslintrc.js
CHANGED
|
@@ -1,34 +1,3 @@
|
|
|
1
|
-
// {
|
|
2
|
-
// "extends": [
|
|
3
|
-
// "eslint-config-alloy/typescript"
|
|
4
|
-
// ],
|
|
5
|
-
// "rules": {
|
|
6
|
-
// "indent": [
|
|
7
|
-
// "error",
|
|
8
|
-
// 2,
|
|
9
|
-
// {
|
|
10
|
-
// "SwitchCase": 1,
|
|
11
|
-
// "flatTernaryExpressions": true
|
|
12
|
-
// }
|
|
13
|
-
// ],
|
|
14
|
-
// "guard-for-in": 0,
|
|
15
|
-
// "no-param-reassign": 0,
|
|
16
|
-
// "no-undefined": 0,
|
|
17
|
-
// "@typescript-eslint/explicit-member-accessibility": 0,
|
|
18
|
-
// "@typescript-eslint/no-invalid-this": 0,
|
|
19
|
-
// "@typescript-eslint/no-loss-of-precision": 0,
|
|
20
|
-
// "@typescript-eslint/consistent-type-assertions": 0,
|
|
21
|
-
// "@typescript-eslint/no-duplicate-imports": 0
|
|
22
|
-
// },
|
|
23
|
-
// "parserOptions": {
|
|
24
|
-
// "ecmaVersion": 6,
|
|
25
|
-
// "sourceType": "module",
|
|
26
|
-
// "ecmaFeatures": {
|
|
27
|
-
// "modules": true
|
|
28
|
-
// }
|
|
29
|
-
// }
|
|
30
|
-
// }
|
|
31
|
-
|
|
32
1
|
module.exports = {
|
|
33
2
|
"extends": [
|
|
34
3
|
"../../.eslintrc.js"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/realtime",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2-beta.0",
|
|
4
4
|
"description": "cloudbase javascript sdk functions componets",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"author": "",
|
|
29
29
|
"license": "ISC",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@cloudbase/types": "^2.5.
|
|
31
|
+
"@cloudbase/types": "^2.5.2-beta.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@tencent/eslint-config-tencent": "^1.0.4",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"eslint --fix"
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "05781e14bbdec5215c8bdce7dc6bca5cec0c1952"
|
|
48
48
|
}
|
package/tsconfig.esm.json
CHANGED
|
@@ -1,27 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
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
|
-
"removeComments": true,
|
|
17
|
-
"skipLibCheck": true,
|
|
18
|
-
"strictBindCallApply": true,
|
|
19
|
-
"declarationMap": false,
|
|
20
|
-
"inlineSourceMap": true,
|
|
21
|
-
"inlineSources": true,
|
|
22
|
-
"target": "es5",
|
|
23
|
-
"moduleResolution": "node",
|
|
24
|
-
"lib": ["es2015", "dom"]
|
|
25
7
|
},
|
|
26
8
|
"include": [
|
|
27
9
|
"src/**/*.ts",
|
package/tsconfig.json
CHANGED
|
@@ -1,27 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
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
|
-
"removeComments": true,
|
|
17
|
-
"skipLibCheck": true,
|
|
18
|
-
"strictBindCallApply": true,
|
|
19
|
-
"declarationMap": false,
|
|
20
|
-
"inlineSourceMap": true,
|
|
21
|
-
"inlineSources": true,
|
|
22
|
-
"target": "es5",
|
|
23
|
-
"moduleResolution": "node",
|
|
24
|
-
"lib": ["es2015", "dom"]
|
|
25
7
|
},
|
|
26
8
|
"include": [
|
|
27
9
|
"src/**/*.ts",
|