Skip to content

Commit bca68ca

Browse files
committed
Add Enable/Disable scripts to Gruntfile to workaround the run of the scripts when npm install called
1 parent 52f8228 commit bca68ca

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

BuildPackage.cmd

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ call "c:\Program Files (x86)\nodejs\nodevars.bat"
22
call npm.cmd install -g grunt-cli
33

44
set NATIVESCRIPT_SKIP_POSTINSTALL_TASKS=1
5+
call grunt.cmd enableScripts:false
56
call npm.cmd install
7+
call grunt.cmd enableScripts:true
68
set NATIVESCRIPT_SKIP_POSTINSTALL_TASKS=
79

810
call grunt.cmd pack --no-color

Gruntfile.js

+12
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,18 @@ module.exports = function(grunt) {
129129
grunt.file.write("package.json", JSON.stringify(packageJson, null, " "));
130130
});
131131

132+
grunt.registerTask("enableScripts", function(enable) {
133+
var enableTester = /false/i;
134+
var newScriptsAttr = !enableTester.test(enable) ? "scripts" : "skippedScripts";
135+
var packageJson = grunt.file.readJSON("package.json");
136+
var oldScriptsAttrValue = packageJson.scripts || packageJson.skippedScripts;
137+
delete packageJson.scripts;
138+
delete packageJson.skippedScripts;
139+
packageJson[newScriptsAttr] = oldScriptsAttrValue;
140+
grunt.file.write("package.json", JSON.stringify(packageJson, null, " "));
141+
});
142+
143+
132144
grunt.registerTask("test", ["ts:devall", "shell:npm_test"]);
133145
grunt.registerTask("pack", [
134146
"clean",

0 commit comments

Comments
 (0)