Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Sync Endo versions #113

Merged
merged 5 commits into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.19.3', '16.x']
node-version: ['18.x']
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll change the required tests to pass these new '18.x' matrices.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it. Added required checks for 18 build test and lint, removed others.

steps:
- uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.19.3']
node-version: ['18.x']
steps:
- uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14.19.3', '16.x']
node-version: ['18.x']
steps:
- uses: actions/setup-node@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"type": "module",
"devDependencies": {
"@endo/eslint-plugin": "^0.4.4-dev.0",
"@endo/eslint-plugin": "^1.0.0",
"@typescript-eslint/parser": "^5.56.0",
"ava": "^3.12.1",
"eslint": "^8.36.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/parse/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@
"test": "ava"
},
"dependencies": {
"@endo/far": "^0.2.3",
"@endo/init": "^0.5.41",
"@endo/far": "^1.0.0",
"@endo/init": "^1.0.0",
"@jessie.js/transform-this-module": "^0.2.3",
"jessie.js": "^0.3.3"
},
"devDependencies": {
"@endo/ses-ava": "^0.2.25",
"@endo/ses-ava": "^1.0.0",
"ava": "^3.12.1",
"eslint": "^7.23.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"ses": "^0.15.15"
"ses": "^1.0.0"
},
"files": [
"LICENSE*",
Expand Down
8 changes: 4 additions & 4 deletions packages/stdlib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@
"test": "ava"
},
"dependencies": {
"@endo/far": "^0.2.3"
"@endo/far": "^1.0.0"
},
"devDependencies": {
"@endo/init": "^0.5.41",
"@endo/ses-ava": "^0.2.25",
"@endo/init": "^1.0.0",
"@endo/ses-ava": "^1.0.0",
"ava": "^3.12.1",
"eslint": "^7.23.0",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"ses": "^0.15.15",
"ses": "^1.0.0",
"typescript": "^4.6.4"
},
"files": [
Expand Down
Loading