Skip to content

Commit

Permalink
chore(deps): bump the production-dependencies group with 4 updates
Browse files Browse the repository at this point in the history
Bumps the production-dependencies group with 4 updates: [firebase](https://github.com/firebase/firebase-js-sdk), [monaco-editor](https://github.com/microsoft/monaco-editor), [uuid](https://github.com/uuidjs/uuid) and [@types/uuid](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/uuid).


Updates `firebase` from 9.15.0 to 10.13.1
- [Release notes](https://github.com/firebase/firebase-js-sdk/releases)
- [Changelog](https://github.com/firebase/firebase-js-sdk/blob/main/CHANGELOG.md)
- [Commits](https://github.com/firebase/firebase-js-sdk/compare/[email protected]@10.13.1)

Updates `monaco-editor` from 0.34.1 to 0.51.0
- [Release notes](https://github.com/microsoft/monaco-editor/releases)
- [Changelog](https://github.com/microsoft/monaco-editor/blob/main/CHANGELOG.md)
- [Commits](microsoft/monaco-editor@v0.34.1...v0.51.0)

Updates `uuid` from 9.0.0 to 10.0.0
- [Changelog](https://github.com/uuidjs/uuid/blob/main/CHANGELOG.md)
- [Commits](uuidjs/uuid@v9.0.0...v10.0.0)

Updates `@types/uuid` from 9.0.0 to 10.0.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/uuid)

---
updated-dependencies:
- dependency-name: firebase
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: monaco-editor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: "@types/uuid"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Progyan Bhattacharya <[email protected]>
  • Loading branch information
dependabot[bot] and 0xTheProDev authored Sep 18, 2024
1 parent 60f345f commit 49a004c
Show file tree
Hide file tree
Showing 23 changed files with 362 additions and 435 deletions.
10 changes: 1 addition & 9 deletions .github/shared/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
name: "Setup Environment"
description: "Install dependencies in the most efficient way for Node/Bun project."

inputs:
node-version:
description: "Node Version"
pnpm-version:
description: "Pnpm Version"

runs:
using: "composite"
steps:
Expand All @@ -19,15 +13,13 @@ runs:

- name: Setup Pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ inputs.pnpm-version }}

- name: Setup Environment
uses: 0xTheProDev/setup-js@v1
with:
cache: pnpm
registry-url: "https://registry.npmjs.org"
version: ${{ inputs.node-version }}
version-file: .nvmrc

branding:
icon: "package"
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,12 @@ jobs:
build:
name: Build Artifacts
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- name: Build Artifacts
run: pnpm build
7 changes: 0 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,9 @@ jobs:
deploy:
name: Deploy Package
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- name: Build Artifacts
run: pnpm build
Expand Down
35 changes: 0 additions & 35 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,12 @@ jobs:
unit:
name: Unit Test Modules
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- name: Run Tests
run: "pnpm test:ci"
Expand All @@ -57,19 +50,12 @@ jobs:
ace:
name: Ace Integration
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- name: Run Tests
run: "pnpm test:ace"
Expand All @@ -84,19 +70,12 @@ jobs:
name: Firebase Integration
runs-on: ubuntu-latest
environment: test
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- name: Add Realtime Database Rules
uses: jsdaniell/[email protected]
Expand All @@ -118,19 +97,12 @@ jobs:
# monaco:
# name: Monaco Integration
# runs-on: ubuntu-latest
# strategy:
# matrix:
# node-version: ["20.10"]
# pnpm-version: [8]
# steps:
# - name: Checkout Repository
# uses: actions/checkout@v4

# - name: Prepare Environment
# uses: ./.github/shared/setup
# with:
# node-version: ${{ matrix.node-version }}
# pnpm-version: ${{ matrix.pnpm-version }}

# - name: Run Tests
# run: "pnpm test:monaco"
Expand All @@ -146,19 +118,12 @@ jobs:
needs: [unit, ace, firebase]
runs-on: ubuntu-latest
environment: test
strategy:
matrix:
node-version: ["20.10"]
pnpm-version: [8]
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare Environment
uses: ./.github/shared/setup
with:
node-version: ${{ matrix.node-version }}
pnpm-version: ${{ matrix.pnpm-version }}

- uses: actions/download-artifact@v4

Expand Down
2 changes: 1 addition & 1 deletion __tests__/firebase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
"license": "MIT",
"devDependencies": {
"@otjs/firebase-plaintext": "workspace:*",
"firebase": "9.15.0"
"firebase": "10.13.1"
}
}
2 changes: 1 addition & 1 deletion __tests__/monaco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"license": "MIT",
"devDependencies": {
"@otjs/monaco": "workspace:*",
"monaco-editor": "0.34.1"
"monaco-editor": "0.51.0"
}
}
10 changes: 5 additions & 5 deletions examples/collaborative-editors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
"description": "Example usage of @otjs library as Real-time collaborative editor.",
"main": "index.html",
"scripts": {
"start": "firebase emulators:exec \"yarn start:app\"",
"start": "firebase emulators:exec \"pnpm run start:app\"",
"start:app": "webpack serve --hot --progress"
},
"author": "Progyan Bhattacharya <[email protected]>",
"license": "MIT",
"dependencies": {
"@otjs/firebase-ace": "workspace:*",
"@otjs/firebase-monaco": "workspace:*",
"firebase": "9.15.0",
"monaco-editor": "0.34.1",
"uuid": "9.0.0"
"firebase": "10.13.1",
"monaco-editor": "0.51.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/ace": "0.0.48",
"@types/uuid": "9.0.0",
"@types/uuid": "10.0.0",
"css-loader": "6.7.3",
"monaco-editor-webpack-plugin": "7.0.1",
"source-map-loader": "4.0.1",
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"engines": {
"node": ">= 20",
"pnpm": ">= 8"
"pnpm": ">= 9"
},
"devDependencies": {
"@babel/core": "7.23.6",
Expand All @@ -53,5 +53,6 @@
"typescript": "4.9.5",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
}
},
"packageManager": "[email protected]"
}
4 changes: 2 additions & 2 deletions packages/ace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/0xTheProDev/Operational-Transformation/discussions"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-ace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ We are using [Jest](https://jestjs.io) to form our Unit Test Suite. [Nyc _(forme
To run all the unit test suites in local dev environment, run the following after dependencies have been installed:

```sh
yarn test
pnpm test
```

## Reporting a Bug
Expand Down
6 changes: 3 additions & 3 deletions packages/firebase-ace/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"url": "https://github.com/0xTheProDev/Operational-Transformation/discussions"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts",
Expand All @@ -48,7 +48,7 @@
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"@types/ace": "0.0.48",
"firebase": "9.15.0",
"firebase": "10.13.1",
"mitt": "3.0.1"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/firebase-monaco/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ We are using [Jest](https://jestjs.io) to form our Unit Test Suite. [Nyc _(forme
To run all the unit test suites in local dev environment, run the following after dependencies have been installed:

```sh
yarn test
pnpm test
```

## Reporting a Bug
Expand Down
8 changes: 4 additions & 4 deletions packages/firebase-monaco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"url": "https://github.com/0xTheProDev/Operational-Transformation/discussions"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts",
Expand All @@ -47,9 +47,9 @@
"devDependencies": {
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"firebase": "9.15.0",
"firebase": "10.13.1",
"mitt": "3.0.1",
"monaco-editor": "0.34.1"
"monaco-editor": "0.51.0"
},
"dependencies": {
"@otjs/firebase-plaintext": "0.2.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/firebase-plaintext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"node": ">=10.10.0"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts"
Expand All @@ -47,7 +47,7 @@
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"firebase": "9.15.0"
"firebase": "10.13.1"
},
"peerDependencies": {
"@otjs/plaintext": "^0.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/monaco/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
"url": "https://github.com/0xTheProDev/Operational-Transformation/discussions"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts"
Expand All @@ -45,7 +45,7 @@
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"monaco-editor": "0.34.1"
"monaco-editor": "0.51.0"
},
"peerDependencies": {
"@otjs/plaintext": "^0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/plaintext-editor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ We are using [Jest](https://jestjs.io) to form our Unit Test Suite. [Nyc _(forme
To run all the unit test suites in local dev environment, run the following after dependencies have been installed:

```sh
yarn test
pnpm test
```

## Reporting a Bug
Expand Down
4 changes: 2 additions & 2 deletions packages/plaintext-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"node": ">=10.0.0"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/plaintext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ We are using [Jest](https://jestjs.io) to form our Unit Test Suite. [Nyc _(forme
To run all the unit test suites in local dev environment, run the following after dependencies have been installed:

```sh
yarn test
pnpm test
```

## Reporting a Bug
Expand Down
4 changes: 2 additions & 2 deletions packages/plaintext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"node": ">=10.0.0"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/state-machine/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ We are using [Jest](https://jestjs.io) to form our Unit Test Suite. [Nyc _(forme
To run all the unit test suites in local dev environment, run the following after dependencies have been installed:

```sh
yarn test
pnpm test
```

## Reporting a Bug
Expand Down
4 changes: 2 additions & 2 deletions packages/state-machine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"node": ">=10.0.0"
},
"scripts": {
"prebuild": "yarn clean",
"build": "yarn build:lib && yarn build:dts",
"prebuild": "pnpm run clean",
"build": "pnpm run build:lib && pnpm run build:dts",
"build:lib": "webpack",
"build:dts": "api-extractor run",
"clean": "rimraf lib typings index.d.ts",
Expand Down
Loading

0 comments on commit 49a004c

Please sign in to comment.