Releases: spotify/web-scripts
v5.1.0
v5.0.2
v5.0.0
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
Initial release
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