@atlaspack/parcel-to-atlaspack 2.14.4-inline-requires-take-2-850fb4568.0 → 2.14.5-dev-ts-project-refs-d30e9754f.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/lib/types/bin.d.ts +2 -0
- package/lib/types/cli.d.ts +1 -0
- package/lib/types/migrations/diff.d.ts +2 -0
- package/lib/types/migrations/migrate-package-json.d.ts +8 -0
- package/lib/types/migrations/migrate-parcelrc.d.ts +5 -0
- package/lib/types/migrations/package-json/migrate-config-fields.d.ts +1 -0
- package/lib/types/migrations/package-json/migrate-dependencies.d.ts +1 -0
- package/lib/types/migrations/package-json/migrate-engines-field.d.ts +1 -0
- package/lib/types/migrations/package-json/sort-package-json-field.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function run(): Promise<void>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export type MigratePackageJsonOptions = {
|
|
2
|
+
cwd: string;
|
|
3
|
+
dryRun: string;
|
|
4
|
+
skipDependencies: boolean;
|
|
5
|
+
skipEngines: boolean;
|
|
6
|
+
tag: string;
|
|
7
|
+
};
|
|
8
|
+
export declare function migratePackageJson({ cwd, dryRun, skipDependencies, skipEngines, tag, }: MigratePackageJsonOptions): Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function migrateConfigFields(packageJson: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function migrateDependencies(packageJson: any, tag: string): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function migrateEnginesField(packageJson: any): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function sortPackageJsonField(packageJson: any, field: string): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/parcel-to-atlaspack",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.5-dev-ts-project-refs-d30e9754f.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/atlassian-labs/atlaspack.git"
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"access": "public"
|
|
37
37
|
},
|
|
38
38
|
"type": "commonjs",
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "d30e9754f8d423d53261ec54ec87e6fa1299578a"
|
|
40
40
|
}
|