gcf-common-lib 0.32.67 → 0.33.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/.github/workflows/npm-publish.yml +2 -2
- package/package.json +11 -11
- package/.eslintrc.json +0 -49
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
- uses: actions/checkout@v4
|
|
16
16
|
- uses: actions/setup-node@v4
|
|
17
17
|
with:
|
|
18
|
-
node-version:
|
|
18
|
+
node-version: 20
|
|
19
19
|
- run: npm ci
|
|
20
20
|
- run: npm test
|
|
21
21
|
|
|
@@ -26,7 +26,7 @@ jobs:
|
|
|
26
26
|
- uses: actions/checkout@v4
|
|
27
27
|
- uses: actions/setup-node@v4
|
|
28
28
|
with:
|
|
29
|
-
node-version:
|
|
29
|
+
node-version: 20
|
|
30
30
|
registry-url: https://registry.npmjs.org/
|
|
31
31
|
- run: npm ci
|
|
32
32
|
- run: npm publish
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gcf-common-lib",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.33.0",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
7
7
|
"branches": [
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
},
|
|
14
14
|
"main": "src/index",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"postinstall": "npm run build && npm run test",
|
|
17
16
|
"build": "tsc",
|
|
18
17
|
"test": "node --test ./test/"
|
|
19
18
|
},
|
|
@@ -22,20 +21,20 @@
|
|
|
22
21
|
"url": "https://github.com/TopTechnologies/gcf-common.git"
|
|
23
22
|
},
|
|
24
23
|
"dependencies": {
|
|
25
|
-
"@google-cloud/pubsub": "^4.
|
|
26
|
-
"@google-cloud/storage": "^7.
|
|
24
|
+
"@google-cloud/pubsub": "^4.10.0",
|
|
25
|
+
"@google-cloud/storage": "^7.15.2",
|
|
27
26
|
"@tsconfig/node20": "^20.1.4",
|
|
28
|
-
"@types/amqplib": "^0.10.
|
|
27
|
+
"@types/amqplib": "^0.10.7",
|
|
29
28
|
"@types/bluebird": "^3.5.42",
|
|
30
29
|
"@types/express": "^4.17.21",
|
|
31
|
-
"@types/lodash": "^4.17.
|
|
32
|
-
"@types/node": "^20.17.
|
|
33
|
-
"amqplib": "^0.10.
|
|
30
|
+
"@types/lodash": "^4.17.16",
|
|
31
|
+
"@types/node": "^20.17.23",
|
|
32
|
+
"amqplib": "^0.10.5",
|
|
34
33
|
"bluebird": "^3.7.2",
|
|
35
34
|
"lodash": "^4.17.21",
|
|
36
35
|
"moment": "^2.30.1",
|
|
37
|
-
"mongodb": "^6.
|
|
38
|
-
"rxjs": "^7.8.
|
|
36
|
+
"mongodb": "^6.14.1",
|
|
37
|
+
"rxjs": "^7.8.2"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
40
|
"@eslint/js": "^9.21.0",
|
|
@@ -45,7 +44,8 @@
|
|
|
45
44
|
"eslint-plugin-unicorn": "^57.0.0",
|
|
46
45
|
"globals": "^15.15.0",
|
|
47
46
|
"prettier": "^3.5.2",
|
|
48
|
-
"typescript-eslint": "^8.25.0"
|
|
47
|
+
"typescript-eslint": "^8.25.0",
|
|
48
|
+
"typescript": "^5.3.3"
|
|
49
49
|
},
|
|
50
50
|
"author": "alert83@gmail.com",
|
|
51
51
|
"license": ""
|
package/.eslintrc.json
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"root": true,
|
|
3
|
-
"env": {
|
|
4
|
-
"es2021": true,
|
|
5
|
-
"commonjs": true
|
|
6
|
-
},
|
|
7
|
-
"parser": "@typescript-eslint/parser",
|
|
8
|
-
"parserOptions": {
|
|
9
|
-
"ecmaVersion": "latest",
|
|
10
|
-
"sourceType": "module",
|
|
11
|
-
"tsconfigRootDir": ".",
|
|
12
|
-
"project": [
|
|
13
|
-
"./tsconfig.json"
|
|
14
|
-
]
|
|
15
|
-
},
|
|
16
|
-
"plugins": [
|
|
17
|
-
"@typescript-eslint",
|
|
18
|
-
"import",
|
|
19
|
-
"promise",
|
|
20
|
-
"rxjs",
|
|
21
|
-
"lodash",
|
|
22
|
-
"unicorn"
|
|
23
|
-
],
|
|
24
|
-
"extends": [
|
|
25
|
-
"eslint:recommended",
|
|
26
|
-
"plugin:@typescript-eslint/recommended",
|
|
27
|
-
"plugin:import/recommended",
|
|
28
|
-
"plugin:import/typescript",
|
|
29
|
-
"plugin:promise/recommended",
|
|
30
|
-
"plugin:rxjs/recommended",
|
|
31
|
-
"plugin:lodash/recommended",
|
|
32
|
-
"plugin:unicorn/recommended"
|
|
33
|
-
],
|
|
34
|
-
"settings": {
|
|
35
|
-
"import/resolver": {
|
|
36
|
-
"typescript": true,
|
|
37
|
-
"node": true
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"rules": {
|
|
41
|
-
"@typescript-eslint/no-explicit-any": "off",
|
|
42
|
-
"@typescript-eslint/no-unused-vars": "off",
|
|
43
|
-
"@typescript-eslint/no-empty-function": "off",
|
|
44
|
-
"@typescript-eslint/no-empty-interface": "off",
|
|
45
|
-
"lodash/prefer-lodash-method": "off",
|
|
46
|
-
"rxjs/no-implicit-any-catch": "off",
|
|
47
|
-
"unicorn/prevent-abbreviations": "off"
|
|
48
|
-
}
|
|
49
|
-
}
|