-
Notifications
You must be signed in to change notification settings - Fork 0
[PLAT-8593] dev dependencies bumps #47
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
Changes from all commits
d8202ba
c780c00
3459be2
27aa65f
55d96a8
7c5bdb2
bba400b
a1dcc70
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,21 @@ | ||
| module.exports = { | ||
| extends: '@vertexvis/vertexvis-typescript', | ||
| parser: '@typescript-eslint/parser', | ||
| rules: { | ||
| '@typescript-eslint/func-call-spacing': 'off', | ||
| }, | ||
| overrides: [ | ||
| { | ||
| files: ['*.d.ts'], | ||
| rules: { | ||
| '@typescript-eslint/no-unused-vars': 'off', | ||
| }, | ||
| }, | ||
| { | ||
| files: ['*.js', '*.jsx', '*.mjs'], | ||
| rules: { | ||
| '@typescript-eslint/no-require-imports': 'off', | ||
| }, | ||
| }, | ||
| ], | ||
| }; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| v14.17.4 | ||
| v22.22.2 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,22 +40,24 @@ | |
| "start": "jest --watch", | ||
| "test:clean": "rm -fr ./dist-test && mkdir ./dist-test", | ||
| "pretest:build": "yarn test:clean", | ||
| "test:build": "rollup --config ./rollup.testing.js", | ||
| "test:build": "yarn workspace @vertexvis/web-workers build && yarn build && rollup --config ./rollup.testing.js", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just checking - this is something we want to merge and not only for testing, correct?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, it's funky. Because rollup-web-workers references web-workers, you build that first, then build all then run test. Might be able to trim this down or find a more efficient way, but this does the trick for now |
||
| "pretest": "yarn test:build", | ||
| "test": "jest --runInBand", | ||
| "test:coverage": "yarn test" | ||
| }, | ||
| "peerDependencies": { | ||
| "rollup": "^1", | ||
| "rollup": ">=2", | ||
| "threads": "^1" | ||
| }, | ||
| "devDependencies": { | ||
| "@rollup/plugin-commonjs": "^21.1.0", | ||
| "@rollup/plugin-node-resolve": "^13.3.0", | ||
| "@types/expect-puppeteer": "^4.4.6", | ||
| "@vertexvis/web-workers": "0.1.0", | ||
| "get-port": "^5.1.1", | ||
| "http-server": "^13.0.0", | ||
| "jest-puppeteer": "^5.0.4", | ||
| "puppeteer": "^10.2.0", | ||
| "rollup-plugin-copy": "^3.4.0" | ||
| "rollup-plugin-copy": "^3.5.0" | ||
| } | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😬