Skip to content

Commit

Permalink
Internal Task: Update npm pack sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev committed Jan 18, 2024
1 parent 47d72e9 commit a5b6ec8
Show file tree
Hide file tree
Showing 10 changed files with 386 additions and 194 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ browser/
types/
dist/
dest/
drop/

# Don't commit the sub resource integrity generated files
**/*.integrity.json
Expand Down
388 changes: 194 additions & 194 deletions common/config/rush/npm-shrinkwrap.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions examples/AISKU/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,8 @@
"@microsoft/applicationinsights-web": "3.0.6",
"@microsoft/applicationinsights-core-js": "3.0.6",
"@nevware21/ts-utils": ">= 0.10.1 < 2.x"
},
"publishConfig": {
"tag": "example"
}
}
3 changes: 3 additions & 0 deletions examples/cfgSync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,8 @@
"@microsoft/applicationinsights-web": "3.0.6",
"@microsoft/applicationinsights-core-js": "3.0.6",
"@nevware21/ts-utils": ">= 0.10.1 < 2.x"
},
"publishConfig": {
"tag": "example"
}
}
3 changes: 3 additions & 0 deletions examples/dependency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,8 @@
"@microsoft/applicationinsights-dependencies-js": "3.0.6",
"@microsoft/applicationinsights-core-js": "3.0.6",
"@nevware21/ts-utils": ">= 0.10.1 < 2.x"
},
"publishConfig": {
"tag": "example"
}
}
3 changes: 3 additions & 0 deletions examples/shared-worker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,8 @@
"@microsoft/applicationinsights-web-snippet": "1.1.4",
"@microsoft/applicationinsights-core-js": "3.0.6",
"@nevware21/ts-utils": ">= 0.10.1 < 2.x"
},
"publishConfig": {
"tag": "example"
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"ai-min": "node common/scripts/install-run-rush.js ai-min",
"ai-restore": "node common/scripts/install-run-rush.js ai-restore",
"npm-pack": "node common/scripts/install-run-rush.js npm-pack --verbose",
"npm-package": "node ./tools/release-tools/npm_package.js",
"npm-publish": "node ./tools/release-tools/npm_publish.js",
"npm-set-latest": "node ./tools/release-tools/npm_set_latest.js",
"gh-status": "node ./tools/status-tools/github-status.js",
Expand Down
166 changes: 166 additions & 0 deletions tools/release-tools/npm_package.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
const fs = require("fs");
const child_process = require("child_process");

const packageGroupDef = "./tools/release-tools/package_groups.json";
let packageGroup;
let dropFolder;
let dryRun = "";

function showHelp() {
var scriptParts;
var scriptName = process.argv[1];
if (scriptName.indexOf("\\") !== -1) {
scriptParts = scriptName.split("\\");
scriptName = scriptParts[scriptParts.length - 1];
} else if (scriptName.indexOf("/") !== -1) {
scriptParts = scriptName.split("/");
scriptName = scriptParts[scriptParts.length - 1];
}

console.log("");
console.log(scriptName + " <group> ");
console.log("--------------------------");
console.log(" <group> - Identifies the group to publish, identifies folders, the group must be defined in package_groups.json");
console.log(" <dropFolder> - Identifies the base folder to drop the packages into, defaults to ./drop/packages/<group>");
}

function parseArgs() {
console.log("Parsing args - " + process.argv.join(" "));
if (process.argv.length < 2) {
console.error("!!! Invalid number of arguments -- " + process.argv.length);
return false;
}

let idx = 2;
while (idx < process.argv.length) {
let theArg = process.argv[idx];
if (theArg.startsWith("-")) {
if (theArg === "-test") {
dryRun = "--dry-run";
} else {
console.error("!!! Unknown switch [" + theArg + "] detected");
return false;
}
} else if (!packageGroup) {
packageGroup = theArg;
} else if (!dropFolder) {
dropFolder = theArg;
} else {
console.error("!!! Invalid Argument [" + theArg + "] detected");
return false;
}

idx++;
}

// Check for required arguments
if (!packageGroup) {
console.error("!!! Missing package group");
return false;
}

return true;
}

function removeTrailingComma(text) {
return text.replace(/,(\s*[}\],])/g, "$1");
}

function removeComments(text) {
return text.replace(/^\s*\/\/\s.*$/gm, "");
}

function getPackage(packageJsonFile) {
var packageText = removeTrailingComma(fs.readFileSync(packageJsonFile, "utf-8"));

return JSON.parse(packageText);
}

function getNpmPackageName(packageJson) {
let packageName = packageJson.name;
let packageVersion = packageJson.version;

let theNpmPackageName = packageName + "-" + packageVersion;

theNpmPackageName = theNpmPackageName.replace("@", "").replace("/", "-");

return theNpmPackageName + ".tgz";
}

function getGroupProjects() {
if (!fs.existsSync(packageGroupDef)) {
console.error("!!! Unable to locate package group definitions [" + packageGroupDef + "]");
throw new Error("!!! Unable to locate package group definitions.");
}

var groupText = removeComments(removeTrailingComma(fs.readFileSync(packageGroupDef, "utf-8")));

let groupJson = JSON.parse(groupText);
return groupJson[packageGroup] || [];
}

function movePackage(npmPackageName, packageName) {
let packageFolder = dropFolder;
if (!packageFolder) {
packageFolder = "./drop/packages";
packageFolder += "/" + packageGroup;
}

if (!fs.existsSync(packageFolder)) {
fs.mkdirSync(packageFolder, { recursive: true });
}

let packageFile = packageFolder + "/" + packageName;
if (fs.existsSync(packageFile)) {
console.log(` -- Removing existing package ${packageFile}`);
fs.unlinkSync(packageFile);
}

console.log(` -- Moving ${npmPackageName} to ${packageFile}`);
fs.renameSync(npmPackageName, packageFile);
}

if (parseArgs()) {
var packages = getGroupProjects();

console.log(`Creating [${packageGroup}] packages => ${packages.length}`);
packages.forEach((packageRoot) => {
let packageJsonFile = packageRoot + "/package.json";

if (!fs.existsSync(packageJsonFile)) {
console.error("!!! Source package.json doesn't exist [" + packageJsonFile + "]");
throw new Error("!!! Source package.json doesn't exist [" + packageJsonFile + "]");
}

const packageJson = getPackage(packageJsonFile);

const packageName = getNpmPackageName(packageJson);
console.log("\n\n##################################################################");
console.log("Packaging - " + packageName);
console.log("##################################################################");

let npmPackageName = packageRoot + "/" + packageName;
if (fs.existsSync(npmPackageName)) {
console.log(` -- Removing existing package ${npmPackageName}`);
fs.unlinkSync(npmPackageName);
}

const cwd = process.cwd();
process.chdir(packageRoot);
try {
let npmCmd = `npm pack ${dryRun}`;
console.log(`Running: \"${npmCmd}\"`);
child_process.execSync(npmCmd);
} finally {
process.chdir(cwd);
}

if (!dryRun) {
// Move the package to the package folder
movePackage(npmPackageName, packageName);
}
});
} else {
showHelp();
process.exit(1);
}
6 changes: 6 additions & 0 deletions tools/release-tools/npm_publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ function parseArgs() {
idx++;
}

// Check for required arguments
if (!packageGroup) {
console.error("!!! Missing package group");
return false;
}

return true;
}

Expand Down
6 changes: 6 additions & 0 deletions tools/release-tools/package_groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,11 @@
// Snippet packages
"snippet": [
"./tools/applicationinsights-web-snippet"
],
"examples": [
"./examples/AISKU",
"./examples/cfgSync",
"./examples/dependency",
"./examples/shared-worker"
]
}

0 comments on commit a5b6ec8

Please sign in to comment.