Skip to content

Commit a492023

Browse files
committed
chore: build scoped package through nodejs script
1 parent 5c7f25f commit a492023

File tree

3 files changed

+43
-38
lines changed

3 files changed

+43
-38
lines changed

build/pack-scripts/pack-compat.ts

+11-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var scopedVersion = process.argv[2];
77
console.log(`Packing nativescript-angular package with @nativescript/angular: ${scopedVersion}`);
88

99
const distFolderPath = path.resolve("../../dist");
10+
const tempFolderPath = path.resolve("./temp-compat");
1011
const outFileName = "nativescript-angular-compat.tgz";
1112

1213
const nsAngularPackagePath = path.resolve("../../nativescript-angular-package");
@@ -22,14 +23,18 @@ execSync(`npm install --save-exact`, {
2223
cwd: nsAngularPackagePath
2324
});
2425

25-
// ensure empty dist folder
26+
// ensure empty temp and dist folders
27+
fs.emptyDirSync(tempFolderPath);
2628
fs.emptyDirSync(distFolderPath);
2729

28-
// create .tgz
30+
// create .tgz in temp folder
2931
execSync(`npm pack ${nsAngularPackagePath}`, {
30-
cwd: distFolderPath
32+
cwd: tempFolderPath
3133
});
3234

33-
const currentFileName = fs.readdirSync(distFolderPath)[0];
34-
// rename file
35-
fs.moveSync(`${distFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`);
35+
// assume we have a single file built in temp folder, take its name
36+
const currentFileName = fs.readdirSync(tempFolderPath)[0];
37+
38+
// move built file and remove temp folder
39+
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`);
40+
fs.removeSync(`${tempFolderPath}`);

build/pack-scripts/pack-scoped.ts

+31-31
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
// import * as path from "path";
2-
// import * as fs from "fs-extra";
3-
// import { execSync } from "child_process";
4-
5-
// // var myArgs = process.argv.slice(2);
6-
// var scopedVersion = process.argv[2];
7-
// console.log(`Packing nativescript-angular package with @nativescript/angular: ${scopedVersion}`);
8-
9-
// const distFolderPath = path.resolve("../../dist");
10-
// const nsAngularPackagePath = path.resolve("../../nativescript-angular-package");
11-
// const packageJsonPath = path.resolve(`${nsAngularPackagePath}/package.json`);
12-
// console.log("Getting package.json from", packageJsonPath);
13-
14-
// // rewrite dependency in package.json
15-
// const packageJsonObject = JSON.parse(fs.readFileSync(packageJsonPath, { encoding: "utf8" }));
16-
// packageJsonObject.dependencies["@nativescript/angular"] = scopedVersion;
17-
// fs.writeFileSync(packageJsonPath, JSON.stringify(packageJsonObject, null, 4));
18-
19-
// // create .tgz in dist folder
20-
// execSync(`npm install`, {
21-
// cwd: nsAngularPackagePath
22-
// });
23-
// // ensures empty ../dist folder
24-
// fs.emptyDirSync(distFolderPath);
25-
// // cd to dist folder
26-
// execSync(`npm pack ${nsAngularPackagePath}`, {
27-
// cwd: distFolderPath
28-
// });
29-
30-
// console.log("######" + distFolderPath);
31-
// fs.copySync(distFolderPath + "/nativescript-angular-8.3.0.tgz", distFolderPath + "/nativescript-angular-8.3.0.1.tgz")
1+
import * as path from "path";
2+
import * as fs from "fs-extra";
3+
import { execSync } from "child_process";
4+
5+
console.log(`Packing @nativescript/angular package`);
6+
7+
const distFolderPath = path.resolve("../../dist");
8+
const tempFolderPath = path.resolve("./temp-scoped");
9+
const outFileName = "nativescript-angular-scoped.tgz";
10+
11+
const nsAngularPackagePath = path.resolve("../../nativescript-angular");
12+
13+
execSync(`npm install --save-exact`, {
14+
cwd: nsAngularPackagePath
15+
});
16+
17+
// ensure empty temp and dist folders
18+
fs.emptyDirSync(tempFolderPath);
19+
fs.emptyDirSync(distFolderPath);
20+
21+
// create .tgz in temp folder
22+
execSync(`npm pack ${nsAngularPackagePath}`, {
23+
cwd: tempFolderPath
24+
});
25+
26+
// assume we have a single file built in temp folder, take its name
27+
const currentFileName = fs.readdirSync(tempFolderPath)[0];
28+
29+
// move built file and remove temp folder
30+
fs.moveSync(`${tempFolderPath}/${currentFileName}`, `${distFolderPath}/${outFileName}`);
31+
fs.removeSync(`${tempFolderPath}`);

nativescript-angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"tsc-w": "tsc -p tsconfig.json -w",
3535
"ngc": "ngc -p tsconfig.json",
3636
"prepare": "npm run ngc",
37-
"pack": "mkdir -p ../dist && cd ../dist && npm pack ../nativescript-angular",
37+
"pack": "cd ../build/pack-scripts && npm i && npx ts-node pack-scoped.ts",
3838
"version": "rm -rf package-lock.json && conventional-changelog -p angular -i ../CHANGELOG.md -s && git add ../CHANGELOG.md",
3939
"typedoc": "typedoc --tsconfig \"./tsconfig.typedoc.json\" --out ./bin/dist/ng-api-reference --includeDeclarations --name \"NativeScript Angular\" --theme ./node_modules/nativescript-typedoc-theme --excludeExternals --externalPattern \"**/+(tns-core-modules|module|declarations).d.ts\""
4040
},

0 commit comments

Comments
 (0)