Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2011-12-01 11:53:35 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2011-12-02 00:12:17 +0400
commit3e7f4b0f822875c2fa16427315f08dca8fa3dc5c (patch)
tree29bb512969c5bea5bce4b4b20241bcd37685c473 /tools
parentd5f401147acb3fe409f303d3b1e0571cde33611e (diff)
npm msi changes
Diffstat (limited to 'tools')
-rw-r--r--tools/msvs/msi/product.wxs32
-rw-r--r--tools/msvs/npm/npmrc1
2 files changed, 30 insertions, 3 deletions
diff --git a/tools/msvs/msi/product.wxs b/tools/msvs/msi/product.wxs
index 4071b79da67..d924a4dfef5 100644
--- a/tools/msvs/msi/product.wxs
+++ b/tools/msvs/msi/product.wxs
@@ -1,7 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <?define sourcedir="$(var.ProjectDir)..\..\..\$(var.Configuration)\" ?>
+ <?define repoDir="$(var.ProjectDir)..\..\..\" ?>
+ <?define sourcedir="$(var.repoDir)\$(var.Configuration)\" ?>
<Product Id="cc6c176e-e26c-48ec-8970-f58bd1d046cf"
Name="node.js"
@@ -17,10 +18,22 @@
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="NodeRoot" Name="nodejs">
- <Directory Id="NodeModulesFolder" Name="node_modules" />
+ <Directory Id="NodeModulesFolder" Name="node_modules">
+ <Directory Id="NPMFolder" Name="npm">
+ <Component Id="npmrc" Guid="55B2B03F-8F32-4D62-A54A-FA428615591D">
+ <File Id="filenpmrc" KeyPath="yes" Source="$(var.repoDir)\tools\msvs\npm\npmrc" />
+ </Component>
+ </Directory>
+ </Directory>
<Component Id="nodeexe" Guid="AEC0F08E-89B3-4C35-A286-8DB8598597F2">
<File Id="filenodeexe" KeyPath="yes" Source="$(var.sourcedir)\node.exe" />
- <Environment Id="Environment"
+ <Environment Id="npm_env"
+ Action="set"
+ Name="PATH"
+ Part="last"
+ System="yes"
+ Value="[AppDataFolder]npm" />
+ <Environment Id="node_env"
Action="set"
Name="PATH"
Part="last"
@@ -37,11 +50,24 @@
<?endif?>
</Directory>
</Directory>
+ <Directory Id="AppDataFolder">
+ <Directory Id="NPMAppData" Name="npm">
+ <Component Id="npmappdata_folder" Guid="994B1F7F-60CD-4792-A96D-63BC7FFF29BF" Permanent="yes">
+ <RegistryKey Action="none" Key="dummy" Root="HKCU" >
+ <RegistryValue Type="integer" Value="1" KeyPath="yes" />
+ </RegistryKey >
+ <CreateFolder/>
+ <RemoveFolder Id="RemoveAppData" On="uninstall" />
+ </Component>
+ </Directory>
+ </Directory>
</Directory>
<ComponentGroup Id="allfiles">
<ComponentRef Id="nodeexe"/>
<ComponentRef Id="npmcmd"/>
+ <ComponentRef Id="npmrc" />
+ <ComponentRef Id="npmappdata_folder" />
<ComponentGroupRef Id="NPMFiles" />
<?if $(var.Configuration) = Debug ?>
<ComponentRef Id="nodepdb"/>
diff --git a/tools/msvs/npm/npmrc b/tools/msvs/npm/npmrc
new file mode 100644
index 00000000000..cbea6748dc1
--- /dev/null
+++ b/tools/msvs/npm/npmrc
@@ -0,0 +1 @@
+prefix=${APPDATA}\npm