diff --git a/.changeset/afraid-experts-attack.md b/.changeset/afraid-experts-attack.md deleted file mode 100644 index a540c540..00000000 --- a/.changeset/afraid-experts-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@preconstruct/cli": patch ---- - -Added experimental `exports` flag. See the docs at the `exports` section of https://preconstruct.tools/configuration. diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9ff433db..f3398aa3 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,11 @@ # preconstruct +## 2.1.8 + +### Patch Changes + +- [#435](https://github.com/preconstruct/preconstruct/pull/435) [`014038b`](https://github.com/preconstruct/preconstruct/commit/014038b1049be52a8755c37723d931997b13da04) Thanks [@nicksrandall](https://github.com/nicksrandall)! - Added experimental `exports` flag. See the docs at the `exports` section of https://preconstruct.tools/configuration. + ## 2.1.7 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 9de351e7..06b94088 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,8 +1,14 @@ { "name": "@preconstruct/cli", - "version": "2.1.7", + "version": "2.1.8", "description": "Dev and build your code painlessly in monorepos", - "files": ["bin.js", "cli", "worker", "!**/*.d.ts", "dist"], + "files": [ + "bin.js", + "cli", + "worker", + "!**/*.d.ts", + "dist" + ], "bin": { "preconstruct": "./bin.js" }, @@ -48,7 +54,10 @@ "v8-compile-cache": "^2.1.1" }, "preconstruct": { - "entrypoints": ["cli", "worker"] + "entrypoints": [ + "cli", + "worker" + ] }, "devDependencies": { "escape-string-regexp": "^4.0.0",