Skip to content
This repository was archived by the owner on Feb 14, 2022. It is now read-only.

Commit c3bef20

Browse files
author
Simon Hofmann
committed
Updated package scripts
1 parent 9e80392 commit c3bef20

6 files changed

+25
-22
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"main": "./build/index.js",
66
"scripts": {
77
"build": "rm -rf build && tsc",
8-
"prepublishOnly": "node prepublish.js",
9-
"install": "node ./install.js",
8+
"preinstall": "node preinstall.js",
9+
"install": "node install.js",
1010
"test": "mocha --recursive ./test"
1111
},
1212
"repository": {
@@ -33,4 +33,4 @@
3333
"mocha": "^6.1.4",
3434
"typescript": "^3.4.5"
3535
}
36-
}
36+
}

package.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ npm-opencv-build/.travis.yml
33
npm-opencv-build/appveyor.yml
44
npm-opencv-build/Find-VS2017.cs
55
npm-opencv-build/install.js
6-
npm-opencv-build/prepublish.js
6+
npm-opencv-build/preinstall.js
77
npm-opencv-build/README.md
88
npm-opencv-build/setup_linux.sh
99
npm-opencv-build/setup_osx.sh

package_win32.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ npm-opencv-build\\.travis.yml
33
npm-opencv-build\\appveyor.yml
44
npm-opencv-build\\Find-VS2017.cs
55
npm-opencv-build\\install.js
6-
npm-opencv-build\\prepublish.js
6+
npm-opencv-build\\preinstall.js
77
npm-opencv-build\\README.md
88
npm-opencv-build\\setup_linux.sh
99
npm-opencv-build\\setup_osx.sh

preinstall.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const fs = require("fs");
2+
const { join } = require("path");
3+
4+
if (process.env.CI) {
5+
const filename = join(__dirname, "package.json");
6+
const packageJson = require(filename);
7+
8+
const plattformPackageName = `@nut-tree/opencv-build-${process.platform}`;
9+
packageJson.name = plattformPackageName;
10+
11+
try {
12+
fs.writeFileSync(filename, JSON.stringify(packageJson, null, 2));
13+
} catch (err) {
14+
console.log(err);
15+
process.exit(-1);
16+
}
17+
console.log(`Patched package name to '${plattformPackageName}'`);
18+
}

prepublish.js

-15
This file was deleted.

0 commit comments

Comments
 (0)