@atlaspack/package-manager 2.14.21-typescript-1fd1095e8.0 → 2.14.21-typescript-b27501580.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.
Files changed (2) hide show
  1. package/package.json +15 -15
  2. package/index.d.ts +0 -40
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/package-manager",
3
- "version": "2.14.21-typescript-1fd1095e8.0",
3
+ "version": "2.14.21-typescript-b27501580.0",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -10,14 +10,14 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/atlassian-labs/atlaspack.git"
12
12
  },
13
- "main": "lib/index.js",
14
- "source": "src/index.ts",
15
- "types": "src/index.ts",
13
+ "main": "./lib/index.js",
14
+ "source": "./src/index.ts",
15
+ "types": "./lib/index.d.ts",
16
16
  "engines": {
17
17
  "node": ">= 16.0.0"
18
18
  },
19
19
  "scripts": {
20
- "check-ts": "tsc --noEmit",
20
+ "check-ts": "tsc --emitDeclarationOnly --rootDir src",
21
21
  "test": "mocha test"
22
22
  },
23
23
  "targets": {
@@ -38,14 +38,14 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@atlaspack/build-cache": "2.13.4-typescript-1fd1095e8.0",
42
- "@atlaspack/diagnostic": "2.14.2-typescript-1fd1095e8.0",
43
- "@atlaspack/fs": "2.15.16-typescript-1fd1095e8.0",
44
- "@atlaspack/logger": "2.14.14-typescript-1fd1095e8.0",
45
- "@atlaspack/node-resolver-core": "3.5.21-typescript-1fd1095e8.0",
46
- "@atlaspack/types": "2.15.11-typescript-1fd1095e8.0",
47
- "@atlaspack/utils": "2.17.3-typescript-1fd1095e8.0",
48
- "@atlaspack/workers": "2.14.21-typescript-1fd1095e8.0",
41
+ "@atlaspack/build-cache": "2.13.4-typescript-b27501580.0",
42
+ "@atlaspack/diagnostic": "2.14.2-typescript-b27501580.0",
43
+ "@atlaspack/fs": "2.15.16-typescript-b27501580.0",
44
+ "@atlaspack/logger": "2.14.14-typescript-b27501580.0",
45
+ "@atlaspack/node-resolver-core": "3.5.21-typescript-b27501580.0",
46
+ "@atlaspack/types": "2.15.11-typescript-b27501580.0",
47
+ "@atlaspack/utils": "2.17.3-typescript-b27501580.0",
48
+ "@atlaspack/workers": "2.14.21-typescript-b27501580.0",
49
49
  "@swc/core": "^1.10.0",
50
50
  "command-exists": "^1.2.6",
51
51
  "cross-spawn": "^6.0.4",
@@ -60,5 +60,5 @@
60
60
  "./src/Yarn.js": false
61
61
  },
62
62
  "type": "commonjs",
63
- "gitHead": "1fd1095e86da1e50d6c7819c0f132ce09a2bf396"
64
- }
63
+ "gitHead": "b275015805a058452afb6fb48c078ecd4de925f2"
64
+ }
package/index.d.ts DELETED
@@ -1,40 +0,0 @@
1
- import type {
2
- FilePath,
3
- PackageInstaller,
4
- PackageManager,
5
- PackageManagerResolveResult,
6
- } from '@atlaspack/types';
7
- import type {FileSystem} from '@atlaspack/fs';
8
-
9
- export type {PackageManagerResolveResult};
10
- export type {PackageManagerResolveResult as ResolveResult};
11
-
12
- export type {
13
- PackageManager,
14
- InstallOptions,
15
- InstallerOptions,
16
- PackageInstaller,
17
- Invalidations,
18
- ModuleRequest,
19
- } from '@atlaspack/types';
20
-
21
- export const Npm: {
22
- new (): PackageInstaller;
23
- };
24
- export const Pnpm: {
25
- new (): PackageInstaller;
26
- };
27
- export const Yarn: {
28
- new (): PackageInstaller;
29
- };
30
-
31
- export const MockPackageInstaller: {
32
- new (): PackageInstaller;
33
- };
34
- export const NodePackageManager: {
35
- new (
36
- fs: FileSystem,
37
- projectRoot: FilePath,
38
- installer?: PackageInstaller,
39
- ): PackageManager;
40
- };