• Home
  • Raw
  • Download

Lines Matching +full:before +full:- +full:script

3 \fBscripts\fR \- How npm handles the "scripts" field
6-in scripts and their preset life cycle events as well as arbitrary scripts\. These all can be exe…
9 …fB"scripts"\fP section of the \fBpackage\.json\fP, simply create another script \fIwith a matching…
15 "precompress": "{{ executes BEFORE the `compress` script }}",
17 "postcompress": "{{ executes AFTER `compress` script }}"
24 …appen only in certain situations\. These scripts happen in addtion to the "pre" and "post" script\.
34 Runs BEFORE the package is packed
36 Runs BEFORE the package is published
40 Run AFTER \fBprepublish\fP, but BEFORE \fBprepublishOnly\fP
42 … a \fBprepare\fP script, its \fBdependencies\fP and \fBdevDependencies\fP will be installed, and t…
56 Runs BEFORE the package is prepared and packed, ONLY on \fBnpm publish\fP\|\.
63 Runs BEFORE a tarball is packed (on "\fBnpm pack\fP", "\fBnpm publish\fP", and when installing a gi…
65 … as "\fBnpm pack\fP"\. "\fBnpm run pack\fP" is an arbitrary user defined script name, where as, "\…
79 Since \fBnpm@1\.1\.71\fP, the npm CLI has run the \fBprepublish\fP script for both \fBnpm publish\f…
85 …ckage before it is used, in a way that is not dependent on the operating system or architecture of…
99 You can depend on \fBcoffee\-script\fP as a \fBdevDependency\fP, and thus
165 npm will default some script values based on package contents\.
172 \fB"install": "node\-gyp rebuild"\fP:
175 default the \fBinstall\fP command to compile using node\-gyp\.
182 defaults to \fBnobody\fP\|\. Set the \fBunsafe\-perm\fP flag to run scripts with
209 then you could run \fBnpm start\fP to execute the \fBbar\fP script, which is
264 single script used for different parts of the process which switches
269 see this in the script:
293 and post\-install stages of the lifecycle, and \fBscripts/uninstall\.js\fP
315 Scripts are run by passing the line as a script argument to \fBsh\fP\|\.
317 If the script exits with a code other than 0, then this will abort the
320 Note that these script files don't have to be nodejs or even
325 If you want to run a specific script at a specific lifecycle event for
326 ALL packages, then you can use a hook script\.
338 Don't exit with a non\-zero error code unless you \fIreally\fR mean it\.
354 Don't prefix your script commands with "sudo"\. If root permissions
360 preinstall or install script\. If you are doing this, please consider if
368 npm help run\-script