Updgrade dependent packages to the latest version #147
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgrade dependent packages to the latest version by using
yarn upgrade(-interactive) --latest
. (Except Puppeteer: #106)Notable changes
@octokit/rest
is no longer used by migrating release script to GitHub Actions.jest-junit
has a major update v8.0.0:JEST_JUNIT_OUTPUT
was removed. We have to useJEST_JUNIT_OUTPUT_DIR
instead.screenfull
has a major update v5.0.0:screenfull.enabled
is renamed toscreenfull.isEnabled
.In TS, screenfull must be imported byimport screenfull = require('screenfull')
.import xxx = require('xxx')
seems to be silently removed rollup/rollup-plugin-typescript#80) A workaround explained in README of rollup-plugin-typescript is not recommended, so we have adopted another approach:import { default as screenfull } from 'screenfull'
.1.22.11
, but it's not published to npm. Instead, 1.23 beta is published as the latest version. (1.23.0-module.beta.1 was mistakenly released under thelatest
dist-tag sass/dart-sass#818) We have to be careful not to bump to pre-release version.