Skip to content

Commit 8cafb21

Browse files
Version Packages (#11)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 01acb1c commit 8cafb21

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.changeset/happy-papers-accept.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# eslint-plugin-import-zod
22

3+
## 1.2.0
4+
5+
### Minor Changes
6+
7+
- 01acb1c: Default imports are now converted to namespace imports
8+
9+
```ts
10+
import z from "zod";
11+
```
12+
13+
to
14+
15+
```ts
16+
import * as z from "zod";
17+
```
18+
319
## 1.1.1
420

521
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-import-zod",
3-
"version": "1.1.1",
3+
"version": "1.2.0",
44
"description": "ESLint plugin to enforce namespace imports for zod",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)