@scaleway/random-name
Advanced tools
Comparing version 4.0.1 to 4.0.2
# Change Log | ||
## 4.0.2 | ||
### Patch Changes | ||
- [#1380](https://github.com/scaleway/scaleway-lib/pull/1380) [`c0e0d51`](https://github.com/scaleway/scaleway-lib/commit/c0e0d5104680149f9b38ae509b17d14a66c4d733) Thanks [@QuiiBz](https://github.com/QuiiBz)! - Add `exports` field & fix package lint errors | ||
All notable changes to this project will be documented in this file. | ||
@@ -8,32 +14,24 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
### :package: Chore | ||
* **release:** publish ([9d6de7b](https://github.com/scaleway/scaleway-lib/commit/9d6de7b63065f53774cb64b0e5a46a868dc9933a)) | ||
- **release:** publish ([9d6de7b](https://github.com/scaleway/scaleway-lib/commit/9d6de7b63065f53774cb64b0e5a46a868dc9933a)) | ||
### :bug: Bug Fixes | ||
* harden ts code ([#1158](https://github.com/scaleway/scaleway-lib/issues/1158)) ([7e2130e](https://github.com/scaleway/scaleway-lib/commit/7e2130ea4c2a079c69ec49b27444daa8f6076d03)) | ||
- harden ts code ([#1158](https://github.com/scaleway/scaleway-lib/issues/1158)) ([7e2130e](https://github.com/scaleway/scaleway-lib/commit/7e2130ea4c2a079c69ec49b27444daa8f6076d03)) | ||
## 4.0.0 (2023-01-06) | ||
### ⚠ BREAKING CHANGES | ||
* packages are ESM only | ||
- packages are ESM only | ||
### :package: Chore | ||
* **release:** publish ([20c9d4f](https://github.com/scaleway/scaleway-lib/commit/20c9d4fb39822245252bf362bc7a8d26127e511d)) | ||
- **release:** publish ([20c9d4f](https://github.com/scaleway/scaleway-lib/commit/20c9d4fb39822245252bf362bc7a8d26127e511d)) | ||
### :gear: Features | ||
* publish packages as ESM only ([#1145](https://github.com/scaleway/scaleway-lib/issues/1145)) ([4c25097](https://github.com/scaleway/scaleway-lib/commit/4c25097254a5ba7f0a5dbb6fdf5d6578a75f777a)) | ||
- publish packages as ESM only ([#1145](https://github.com/scaleway/scaleway-lib/issues/1145)) ([4c25097](https://github.com/scaleway/scaleway-lib/commit/4c25097254a5ba7f0a5dbb6fdf5d6578a75f777a)) | ||
## 3.0.3 (2022-12-29) | ||
@@ -40,0 +38,0 @@ |
{ | ||
"name": "@scaleway/random-name", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "A small utility to generate a random name", | ||
@@ -10,5 +10,6 @@ "type": "module", | ||
"sideEffects": false, | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"publishConfig": { | ||
@@ -22,4 +23,3 @@ "access": "public" | ||
}, | ||
"license": "MIT", | ||
"gitHead": "4f0be52e1cf86895150e66c1206ee1e7fd7a72e7" | ||
} | ||
"license": "MIT" | ||
} |
11380