Skip to content

Commit

Permalink
NPM Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Oct 2, 2024
1 parent 5e19bc1 commit 16f74d7
Show file tree
Hide file tree
Showing 11 changed files with 156 additions and 43 deletions.
32 changes: 0 additions & 32 deletions .changeset/gentle-ducks-wonder.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/two-gifts-fold.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-eagles-return.md

This file was deleted.

39 changes: 39 additions & 0 deletions packages/webpack-config-single-spa-react-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# webpack-config-single-spa-react-ts

## 5.0.0

### Major Changes

- [#412](https://github.com/single-spa/create-single-spa/pull/412) [`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3) Thanks [@joeldenning](https://github.com/joeldenning)! - Output to native ES modules by default. Add new outputSystemJS option.

#### Upgrading

To upgrade without switching to native ES modules, add the `outputSystemJS` option to your webpack.config.js:

```js
const { merge } = require("webpack-merge");
const singleSpaDefaults = require("webpack-config-single-spa-react-ts");

module.exports = (webpackConfigEnv, argv) => {
const defaultConfig = singleSpaDefaults({
orgName: "org",
projectName: "project",
webpackConfigEnv,
argv,

// This is the new option that preserves backwards compatibility
outputSystemJS: true,
});

return merge(defaultConfig, {
// modify the webpack config however you'd like to by adding to this object
});
};
```

The single-spa core team plans to release a full SystemJS -> ESM migration guide on single-spa.js.org.

### Patch Changes

- Updated dependencies [[`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3)]:
- [email protected]
- [email protected]

## 4.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-config-single-spa-react-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-config-single-spa-react-ts",
"version": "4.0.5",
"version": "5.0.0",
"description": "Shareable webpack config for single-spa react projects that use typescript",
"keywords": [
"single-spa",
Expand Down
38 changes: 38 additions & 0 deletions packages/webpack-config-single-spa-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# webpack-config-single-spa-react

## 5.0.0

### Major Changes

- [#412](https://github.com/single-spa/create-single-spa/pull/412) [`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3) Thanks [@joeldenning](https://github.com/joeldenning)! - Output to native ES modules by default. Add new outputSystemJS option.

## Upgrading

To upgrade without switching to native ES modules, add the `outputSystemJS` option to your webpack.config.js:

```js
const { merge } = require("webpack-merge");
const singleSpaDefaults = require("webpack-config-single-spa-react");

module.exports = (webpackConfigEnv, argv) => {
const defaultConfig = singleSpaDefaults({
orgName: "org",
projectName: "project",
webpackConfigEnv,
argv,

// This is the new option that preserves backwards compatibility
outputSystemJS: true,
});

return merge(defaultConfig, {
// modify the webpack config however you'd like to by adding to this object
});
};
```

The single-spa core team plans to release a full SystemJS -> ESM migration guide on single-spa.js.org.

### Patch Changes

- Updated dependencies [[`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3), [`5e19bc1`](https://github.com/single-spa/create-single-spa/commit/5e19bc1b9dd069de995b249e99d19a241b7c8f8c)]:
- [email protected]

## 4.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-config-single-spa-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-config-single-spa-react",
"version": "4.0.5",
"version": "5.0.0",
"description": "A helper for creating webpack configs for react single-spa applications",
"keywords": [
"single-spa",
Expand Down
38 changes: 38 additions & 0 deletions packages/webpack-config-single-spa-ts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# webpack-config-single-spa-ts

## 5.0.0

### Major Changes

- [#412](https://github.com/single-spa/create-single-spa/pull/412) [`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3) Thanks [@joeldenning](https://github.com/joeldenning)! - Output to native ES modules by default. Add new outputSystemJS option.

#### Upgrading

To upgrade without switching to native ES modules, add the `outputSystemJS` option to your webpack.config.js:

```js
const { merge } = require("webpack-merge");
const singleSpaDefaults = require("webpack-config-single-spa-ts");

module.exports = (webpackConfigEnv, argv) => {
const defaultConfig = singleSpaDefaults({
orgName: "org",
projectName: "project",
webpackConfigEnv,
argv,

// This is the new option that preserves backwards compatibility
outputSystemJS: true,
});

return merge(defaultConfig, {
// modify the webpack config however you'd like to by adding to this object
});
};
```

The single-spa core team plans to release a full SystemJS -> ESM migration guide on single-spa.js.org.

### Patch Changes

- Updated dependencies [[`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3), [`5e19bc1`](https://github.com/single-spa/create-single-spa/commit/5e19bc1b9dd069de995b249e99d19a241b7c8f8c)]:
- [email protected]

## 4.1.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-config-single-spa-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-config-single-spa-ts",
"version": "4.1.4",
"version": "5.0.0",
"description": "webpack-config for single-spa + typescript",
"keywords": [
"single-spa",
Expand Down
37 changes: 37 additions & 0 deletions packages/webpack-config-single-spa/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# webpack-config-single-spa

## 6.0.0

### Major Changes

- [#412](https://github.com/single-spa/create-single-spa/pull/412) [`f9edeef`](https://github.com/single-spa/create-single-spa/commit/f9edeef57e5230df78efe7deaea2dec159db89a3) Thanks [@joeldenning](https://github.com/joeldenning)! - Output to native ES modules by default. Add new outputSystemJS option.

#### Upgrading

To upgrade without switching to native ES modules, add the `outputSystemJS` option to your webpack.config.js:

```js
const { merge } = require("webpack-merge");
const singleSpaDefaults = require("webpack-config-single-spa");

module.exports = (webpackConfigEnv, argv) => {
const defaultConfig = singleSpaDefaults({
orgName: "org",
projectName: "project",
webpackConfigEnv,
argv,

// This is the new option that preserves backwards compatibility
outputSystemJS: true,
});

return merge(defaultConfig, {
// modify the webpack config however you'd like to by adding to this object
});
};
```

The single-spa core team plans to release a full SystemJS -> ESM migration guide on single-spa.js.org.

### Minor Changes

- [#414](https://github.com/single-spa/create-single-spa/pull/414) [`5e19bc1`](https://github.com/single-spa/create-single-spa/commit/5e19bc1b9dd069de995b249e99d19a241b7c8f8c) Thanks [@joeldenning](https://github.com/joeldenning)! - Support for importMapUrl option, via import-map-externals-webpack-plugin

## 5.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack-config-single-spa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-config-single-spa",
"version": "5.3.1",
"version": "6.0.0",
"description": "A webpack config for in-browser modules used with single-spa",
"author": "Joel Denning <[email protected]>",
"homepage": "https://github.com/single-spa/create-single-spa",
Expand Down

0 comments on commit 16f74d7

Please sign in to comment.