@modern-js/utils 1.7.4 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @modern-js/utils
2
2
 
3
+ ## 1.7.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 33de0f7ec: fix type export
8
+
3
9
  ## 1.7.4
4
10
 
5
11
  ### Patch Changes
@@ -26,7 +26,8 @@ export { default as dotenvExpand } from '../compiled/dotenv-expand';
26
26
  export { default as browserslist } from '../compiled/browserslist';
27
27
  export { default as recursiveReaddir } from '../compiled/recursive-readdir';
28
28
  export { program, Command } from '../compiled/commander';
29
- export { Signale, type SignaleOptions } from '../compiled/signale';
29
+ export { Signale } from '../compiled/signale';
30
+ export type { SignaleOptions } from '../compiled/signale';
30
31
  export type { IOptions as GlobOptions } from '../compiled/glob';
31
32
  export type { GlobbyOptions } from '../compiled/globby';
32
33
  export type { FSWatcher, WatchOptions } from '../compiled/chokidar';
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.7.4",
14
+ "version": "1.7.5",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/index.d.ts",
17
17
  "main": "./dist/index.js",