-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): [email protected] [skip ci]
## unplugin-rescript [0.0.3](https://github.com/r17x/js/compare/[email protected]@0.0.3) (2024-09-28) ### Bug Fixes * release with provenance and update homepage ([ff41dee](ff41dee)) ### Miscellaneous Chores * in release need to format all package.json after version bump ([02ee3b4](02ee3b4)) * make cjs fix script shared ([#15](#15)) ([d039719](d039719)) * removed postversion and disable workspace-update ([4c9e57a](4c9e57a)) * repository field information ([c8c864d](c8c864d)) * **unplugin-rescript:** add unplugin-rescript ([f58c5f9](f58c5f9)) * update scripts prepack ([3be627c](3be627c))
- Loading branch information
1 parent
702b17f
commit a48ebc6
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
## unplugin-rescript [0.0.3](https://github.com/r17x/js/compare/[email protected]@0.0.3) (2024-09-28) | ||
|
||
### Bug Fixes | ||
|
||
* release with provenance and update homepage ([ff41dee](https://github.com/r17x/js/commit/ff41dee8bf74ed12e8bc525fc44144e48ade7a90)) | ||
|
||
### Miscellaneous Chores | ||
|
||
* in release need to format all package.json after version bump ([02ee3b4](https://github.com/r17x/js/commit/02ee3b4bbe4e3bd84ca8de86cab645ea5c385454)) | ||
* make cjs fix script shared ([#15](https://github.com/r17x/js/issues/15)) ([d039719](https://github.com/r17x/js/commit/d039719ab71ef70607b0ee326848b168d82e722e)) | ||
* removed postversion and disable workspace-update ([4c9e57a](https://github.com/r17x/js/commit/4c9e57aeb00fa5d1c9b6b60d1338f216e788c8f2)) | ||
* repository field information ([c8c864d](https://github.com/r17x/js/commit/c8c864d2b3e8a6f3d040ce34e063b0efe9d3beb7)) | ||
* **unplugin-rescript:** add unplugin-rescript ([f58c5f9](https://github.com/r17x/js/commit/f58c5f90c1ff5b6afb5222eabae570b1f87e6a4f)) | ||
* update scripts prepack ([3be627c](https://github.com/r17x/js/commit/3be627c7306515307aecaa5d1b7b8d064ba3431b)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "unplugin-rescript", | ||
"type": "module", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "a plugin for integration ReScript with most Bundler (Vite, Rollup, Webpack, Esbuild, etc).", | ||
"license": "MIT", | ||
"author": "r17x <[email protected]>", | ||
|
@@ -77,10 +77,15 @@ | |
"types": "dist/index.d.ts", | ||
"typesVersions": { | ||
"*": { | ||
"*": ["./dist/*", "./*"] | ||
"*": [ | ||
"./dist/*", | ||
"./*" | ||
] | ||
} | ||
}, | ||
"files": ["dist"], | ||
"files": [ | ||
"dist" | ||
], | ||
"scripts": { | ||
"prepack": "npm run build", | ||
"build": "tsup", | ||
|