Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: endojs/endo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 82389894f74b42893a52dcac7f7412aeb6b32565
Choose a base ref
..
head repository: endojs/endo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 034ef2eda4dace9896ff3a13bbb7b5ca5286d127
Choose a head ref
Showing with 194 additions and 699 deletions.
  1. +30 −29 .github/workflows/ci.yml
  2. +2 −2 .github/workflows/depcheck.yml
  3. +3 −1 lerna.json
  4. +1 −0 package.json
  5. +1 −2 packages/base64/package.json
  6. +1 −1 packages/bundle-source/package.json
  7. +1 −1 packages/captp/package.json
  8. +1 −2 packages/check-bundle/package.json
  9. +1 −2 packages/cjs-module-analyzer/package.json
  10. +1 −2 packages/cli/package.json
  11. +1 −2 packages/compartment-mapper/package.json
  12. +1 −2 packages/daemon/package.json
  13. +0 −206 packages/eslint-config/CHANGELOG.md
  14. +0 −201 packages/eslint-config/LICENSE
  15. +0 −7 packages/eslint-config/NEWS.md
  16. +0 −32 packages/eslint-config/README.md
  17. +0 −38 packages/eslint-config/SECURITY.md
  18. +0 −38 packages/eslint-config/package.json
  19. +13 −5 packages/eslint-plugin/README.md
  20. +21 −0 packages/eslint-plugin/lib/configs/imports.js
  21. +3 −70 packages/{eslint-config/eslint-config.cjs → eslint-plugin/lib/configs/internal.js}
  22. +7 −0 packages/eslint-plugin/lib/configs/strict.js
  23. +77 −0 packages/eslint-plugin/lib/configs/style.js
  24. +1 −1 packages/eventual-send/package.json
  25. +0 −1 packages/eventual-send/test/test-deep-stacks.js
  26. +0 −1 packages/eventual-send/test/test-e.js
  27. +0 −1 packages/eventual-send/test/test-eventual-send.js
  28. +0 −1 packages/eventual-send/test/test-hp.js
  29. +0 −1 packages/eventual-send/test/test-thenable.js
  30. +1 −2 packages/exo/package.json
  31. +0 −3 packages/exo/test/prepare-test-env-ava.js
  32. +1 −1 packages/far/package.json
  33. +1 −1 packages/import-bundle/package.json
  34. +1 −1 packages/init/package.json
  35. +1 −1 packages/lockdown/package.json
  36. +1 −2 packages/lp32/package.json
  37. +1 −1 packages/marshal/package.json
  38. +1 −1 packages/nat/package.json
  39. +1 −2 packages/netstring/package.json
  40. +1 −2 packages/pass-style/package.json
  41. +1 −2 packages/patterns/package.json
  42. +1 −2 packages/promise-kit/package.json
  43. +1 −2 packages/ses-ava/package.json
  44. +1 −2 packages/ses-integration-test/package.json
  45. +1 −1 packages/ses-integration-test/puppeteer-test/test-post-release.js
  46. +1 −2 packages/ses/package.json
  47. +1 −1 packages/ses/src/enablements.js
  48. +2 −3 packages/ses/src/strict-scope-terminator.js
  49. +1 −2 packages/static-module-record/package.json
  50. +1 −2 packages/stream-node/package.json
  51. +1 −2 packages/stream-types-test/package.json
  52. +1 −2 packages/stream/package.json
  53. +1 −2 packages/syrup/package.json
  54. +1 −2 packages/test262-runner/package.json
  55. +1 −2 packages/where/package.json
  56. +1 −2 packages/zip/package.json
  57. +1 −2 scripts/repackage.sh
59 changes: 30 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -28,10 +28,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -40,10 +40,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -74,10 +74,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -86,10 +86,11 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
shell: bash

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -129,10 +130,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -141,10 +142,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -176,10 +177,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -188,10 +189,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -222,10 +223,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -234,10 +235,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -268,10 +269,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -280,10 +281,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -314,10 +315,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

@@ -326,10 +327,10 @@ jobs:

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache npm modules
uses: actions/cache@v1
uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -344,7 +345,7 @@ jobs:
run: yarn run build

- name: 'switch to node v12'
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: '12.x'

4 changes: 2 additions & 2 deletions .github/workflows/depcheck.yml
Original file line number Diff line number Diff line change
@@ -15,10 +15,10 @@ jobs:
matrix:
node-version: ['14.x']
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: check dependencies
4 changes: 3 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -7,7 +7,9 @@
"changelogPreset": "conventionalcommits"
}
},
"includeMergedTags": true,
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent"
"version": "independent",
"useNx": false
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@
"node": ">=14.18.0"
},
"devDependencies": {
"@jessie.js/eslint-plugin": "^0.3.0",
"@octokit/core": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"ava": "^5.2.0",
3 changes: 1 addition & 2 deletions packages/base64/package.json
Original file line number Diff line number Diff line change
@@ -39,7 +39,6 @@
"test": "ava"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"c8": "^7.7.3",
@@ -63,7 +62,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"ava": {
2 changes: 1 addition & 1 deletion packages/bundle-source/package.json
Original file line number Diff line number Diff line change
@@ -73,7 +73,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
}
}
2 changes: 1 addition & 1 deletion packages/captp/package.json
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
}
}
3 changes: 1 addition & 2 deletions packages/check-bundle/package.json
Original file line number Diff line number Diff line change
@@ -42,7 +42,6 @@
},
"devDependencies": {
"@endo/bundle-source": "^2.4.4",
"@endo/eslint-config": "^0.5.3",
"@endo/init": "^0.5.54",
"@endo/zip": "^0.2.30",
"ava": "^5.2.0",
@@ -68,7 +67,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"ava": {
3 changes: 1 addition & 2 deletions packages/cjs-module-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,6 @@
"test": "ava"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"c8": "^7.7.3",
@@ -52,7 +51,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"ava": {
3 changes: 1 addition & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -35,7 +35,6 @@
"ses": "^0.18.2"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"eslint": "^7.32.0",
@@ -56,7 +55,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"ava": {
3 changes: 1 addition & 2 deletions packages/compartment-mapper/package.json
Original file line number Diff line number Diff line change
@@ -47,7 +47,6 @@
"ses": "^0.18.2"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"c8": "^7.7.3",
@@ -71,7 +70,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"prettier": {
3 changes: 1 addition & 2 deletions packages/daemon/package.json
Original file line number Diff line number Diff line change
@@ -46,7 +46,6 @@
"ses": "^0.18.2"
},
"devDependencies": {
"@endo/eslint-config": "^0.5.3",
"ava": "^5.2.0",
"babel-eslint": "^10.0.3",
"c8": "^7.7.3",
@@ -70,7 +69,7 @@
},
"eslintConfig": {
"extends": [
"@endo"
"plugin:@endo/internal"
]
},
"ava": {
Loading