Skip to content

Commit bf7934b

Browse files
committed
(chore) Dependencies: Update to Latest Applicable Versions
Update workflows to use Node 18 and updated configs wherever needed. Signed-off-by: Progyan Bhattacharya <[email protected]>
1 parent 713fe3b commit bf7934b

File tree

28 files changed

+4318
-3430
lines changed

28 files changed

+4318
-3430
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# List of Supported Funding Platforms
22

33
github: 0xTheProDev
4+
custom: ["https://www.paypal.me/bprogyan"]

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
- uses: actions/setup-node@v2
3737
with:
38-
node-version: "14.x"
38+
node-version: "18.x"
3939
registry-url: "https://registry.npmjs.org"
4040

4141
- uses: actions/cache@v2

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Node for NPM
1616
uses: actions/setup-node@v2
1717
with:
18-
node-version: "14.x"
18+
node-version: "18.x"
1919
registry-url: "https://registry.npmjs.org"
2020
scope: "@otjs"
2121

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
- uses: actions/setup-node@v2
3535
with:
36-
node-version: "14.x"
36+
node-version: "18.x"
3737
registry-url: "https://registry.npmjs.org"
3838

3939
- uses: actions/cache@v2
@@ -70,7 +70,7 @@ jobs:
7070

7171
- uses: actions/setup-node@v2
7272
with:
73-
node-version: "14.x"
73+
node-version: "18.x"
7474
registry-url: "https://registry.npmjs.org"
7575

7676
- uses: actions/cache@v2
@@ -108,7 +108,7 @@ jobs:
108108

109109
- uses: actions/setup-node@v2
110110
with:
111-
node-version: "14.x"
111+
node-version: "18.x"
112112
registry-url: "https://registry.npmjs.org"
113113

114114
- uses: actions/cache@v2
@@ -154,7 +154,7 @@ jobs:
154154

155155
- uses: actions/setup-node@v2
156156
with:
157-
node-version: "14.x"
157+
node-version: "18.x"
158158
registry-url: "https://registry.npmjs.org"
159159

160160
- uses: actions/cache@v2

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.13.2
1+
v18.12.1

__tests__/ace/jest.config.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ module.exports = {
1313
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
1414
...baseConfig.moduleNameMapper,
1515
},
16-
// Name of the package
17-
name: package.name,
1816
// Run tests from one or more projects
1917
projects: null,
2018
// The root directory that Jest should scan for tests and modules within

__tests__/ace/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"author": "Progyan Bhattacharya <[email protected]>",
1313
"license": "MIT",
1414
"devDependencies": {
15-
"@otjs/ace": "^0.2.0",
16-
"ace-builds": "1.4.14"
15+
"@otjs/ace": "0.2.1",
16+
"ace-builds": "1.14.0"
1717
}
1818
}

__tests__/firebase/__setup__/jest.setup.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
const firebaseConfig = require("../firebase.json");
2626

2727
const schema: string = "http";
28-
const host: string = "localhost";
28+
const host: string = "127.0.0.1";
2929

3030
const port: number = firebaseConfig.emulators.database.port;
3131
const dbName: string = firebaseConfig.emulators.database.name;

__tests__/firebase/jest.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const baseConfig = require("../../jest.config");
22
const package = require("./package.json");
33

4+
/** @type {import("@jest/types").Config.InitialOptions} */
45
module.exports = {
56
...baseConfig,
67
// The directory where Jest should output its coverage files
@@ -12,8 +13,6 @@ module.exports = {
1213
"@otjs/firebase-plaintext/(.*)": "<rootDir>/packages/firebase-plaintext/$1",
1314
...baseConfig.moduleNameMapper,
1415
},
15-
// Name of the package
16-
name: package.name,
1716
// Run tests from one or more projects
1817
projects: null,
1918
// The root directory that Jest should scan for tests and modules within

__tests__/firebase/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"author": "Progyan Bhattacharya <[email protected]>",
1414
"license": "MIT",
1515
"devDependencies": {
16-
"@otjs/firebase-plaintext": "^0.2.0",
17-
"firebase": "9.6.10"
16+
"@otjs/firebase-plaintext": "0.2.1",
17+
"firebase": "9.15.0"
1818
}
1919
}

0 commit comments

Comments
 (0)