Remove destroy hook#10549
Conversation
|
|
|
Migration guide needs a rebase it seems |
| import { readFileSync } from "fs"; | ||
|
|
||
| const {version, homepage} = JSON.parse(readFileSync('./package.json')); |
There was a problem hiding this comment.
Can be changed to:
import * as packageJson from './package.json' assert {type: "json"};But then the rollup file needs to be excluded from eslint, not sure what the better/nicer solution is
Might be fixable with extra eslint config: eslint/eslint#15305 (comment)
There was a problem hiding this comment.
I think this way is just fine. Import assertions aren't standardized yet and are still at the proposal phase
benmccann
left a comment
There was a problem hiding this comment.
thanks for fixing the failing build for me
|
@kurkle @LeeLenaleee fyi |
|
Interesting ci did not fail on it, will look at it later |
|
@dangreen I don't seen the get the error when runnning EDIT: |
|
@LeeLenaleee run directly |
TODO:
Add note in migration guide after #10010 is merged that has setup for migration guide