Skip to content

Releases: spotify/web-scripts

v5.1.0

22 Jan 15:02
Compare
Choose a tag to compare

5.1.0 (2020-01-22)

Features

  • web-scripts: rename postinstall to audit (169f3c1), closes #131

v5.0.2

21 Jan 21:33
Compare
Choose a tag to compare

5.0.2 (2020-01-21)

Bug Fixes

  • eslint-config-base: allow triple slashes (8ee981d), closes #117

v5.0.0

07 Jan 14:08
Compare
Choose a tag to compare

Breaking changes:

@spotify/tsconfig was updated to export a single config, which disables all of the output options by default, focusing solely on providing strict typechecks. If you were using the base config before, this primarily means that noEmit has been set to to true, declaration has been set to false, and the target field has been omitted, where you are expected to provide it should you need one.

If you are using @spotify/tsconfig directly, you will need to update your tsconfig to point at the single file, as the separate configs (e.g. @spotify/tsconfig/tsconfig.lib.json, @spotify/tsconfig/tsconfig.app.json...) have been deleted.

- "extends": "@spotify/tsconfig/tsconfig.lib.json"
+ "extends": "@spotify/tsconfig"

It is also possible that your tsconfig will require tweaking depending on how your project builds its assets. Please see the updated documentation for guidance on the best way to set up the tsconfig for your project.

v4.0.0

07 Jan 14:01
Compare
Choose a tag to compare

Breaking changes:

  • Upgraded from ESLint 5 to ESLint 6. It is possible that you will experience failing lint checks when running web-scripts lint or when using the ESLint configs.

Initial release

21 Jun 15:19
Compare
Choose a tag to compare
build: set access to public for all packages

this is necessary to ensure that the packages aren't published privately, which is the default
behavior for scoped packages. https://github.com/lerna/lerna/issues/914