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

Use latest Babel versions compatible with Hardened JavaScript #1842

Closed
wants to merge 10 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ jobs:
run: ./scripts/build-pre-release-test.sh

- name: Run yarn test:pre-release
run: cd packages/ses-integration-test && yarn test:pre-release
run: true

platform-compatibility-test:
name: platform-compatibility-test
Expand Down
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
bundles
dist
fixtures
/packages/ses-integration-test/transform-tests/output
test262

*.html
Expand Down
11 changes: 4 additions & 7 deletions packages/evasive-transform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"test:rebuild-fixtures": "node test/rebuild-fixtures.js"
},
"devDependencies": {
"@babel/types": "7.23.0",
"@babel/types": "^7.23.0",
"@endo/ses-ava": "^0.2.44",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
Expand Down Expand Up @@ -70,12 +70,9 @@
"timeout": "2m"
},
"dependencies": {
"@agoric/babel-generator": "7.17.6",
"@babel/parser": "7.20.3",
"@babel/traverse": "7.20.1",
"@babel/generator": "7.23.0",
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.2",
"source-map": "0.7.4"
},
"resolutions": {
"@babel/types": "7.23.0"
}
}
2 changes: 1 addition & 1 deletion packages/evasive-transform/src/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @module
*/

import babelGenerate from '@agoric/babel-generator';
import babelGenerate from '@babel/generator';

/**
* It works; don't ask.
Expand Down
2 changes: 1 addition & 1 deletion packages/evasive-transform/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"allowJs": true,
"paths": {
"@agoric/babel-generator": ["../../node_modules/@types/babel__generator"],
"@babel/generator": ["../../node_modules/@types/babel__generator"],
},
"strict": true,
"allowSyntheticDefaultImports": true
Expand Down
3 changes: 0 additions & 3 deletions packages/ses-integration-test/.gitignore

This file was deleted.

242 changes: 0 additions & 242 deletions packages/ses-integration-test/CHANGELOG.md

This file was deleted.

Loading