@atlaspack/utils 2.17.3-typescript-8e1995d58.0 → 2.17.3-typescript-1fd1095e8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/utils",
3
- "version": "2.17.3-typescript-8e1995d58.0",
3
+ "version": "2.17.3-typescript-1fd1095e8.0",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -30,12 +30,12 @@
30
30
  }
31
31
  },
32
32
  "dependencies": {
33
- "@atlaspack/codeframe": "2.13.5-typescript-8e1995d58.0",
34
- "@atlaspack/diagnostic": "2.14.2-typescript-8e1995d58.0",
35
- "@atlaspack/feature-flags": "2.19.3-typescript-8e1995d58.0",
36
- "@atlaspack/logger": "2.14.14-typescript-8e1995d58.0",
37
- "@atlaspack/markdown-ansi": "2.14.2-typescript-8e1995d58.0",
38
- "@atlaspack/rust": "3.4.2-typescript-8e1995d58.0",
33
+ "@atlaspack/codeframe": "2.13.5-typescript-1fd1095e8.0",
34
+ "@atlaspack/diagnostic": "2.14.2-typescript-1fd1095e8.0",
35
+ "@atlaspack/feature-flags": "2.19.3-typescript-1fd1095e8.0",
36
+ "@atlaspack/logger": "2.14.14-typescript-1fd1095e8.0",
37
+ "@atlaspack/markdown-ansi": "2.14.2-typescript-1fd1095e8.0",
38
+ "@atlaspack/rust": "3.4.2-typescript-1fd1095e8.0",
39
39
  "@iarna/toml": "^2.2.0",
40
40
  "@parcel/source-map": "^2.1.1",
41
41
  "@types/micromatch": "^4.0.9",
@@ -58,7 +58,7 @@
58
58
  "terminal-link": "^2.1.1"
59
59
  },
60
60
  "devDependencies": {
61
- "@atlaspack/babel-register": "2.14.2-typescript-8e1995d58.0",
61
+ "@atlaspack/babel-register": "2.14.2-typescript-1fd1095e8.0",
62
62
  "benny": "^3.7.1",
63
63
  "random-int": "^1.0.0"
64
64
  },
@@ -73,5 +73,5 @@
73
73
  "check-ts": "tsc --noEmit"
74
74
  },
75
75
  "types": "src/index.ts",
76
- "gitHead": "8e1995d58c0a542dffa3b1fa0da3381be69fe125"
76
+ "gitHead": "1fd1095e86da1e50d6c7819c0f132ce09a2bf396"
77
77
  }
@@ -1,4 +1,4 @@
1
- import {makeDeferredWithPromise, Deferred} from './Deferred';
1
+ import {makeDeferredWithPromise, type Deferred} from './Deferred';
2
2
 
3
3
  type PromiseQueueOpts = {
4
4
  maxConcurrent: number;
package/src/glob.ts CHANGED
@@ -5,7 +5,7 @@ import type {FileSystem} from '@atlaspack/fs';
5
5
  import _isGlob from 'is-glob';
6
6
  // @ts-expect-error TS2305
7
7
  import fastGlob, {FastGlobOptions} from 'fast-glob';
8
- import micromatch, {isMatch, makeRe, Options} from 'micromatch';
8
+ import micromatch, {isMatch, makeRe, type Options} from 'micromatch';
9
9
  import {normalizeSeparators} from './path';
10
10
 
11
11
  export function isGlob(p: FilePath): any {