1<?xml version="1.0" encoding="utf-8"?> 2<installer-gui-script minSpecVersion="1"> 3 <title>Node.js</title> 4 <welcome file="welcome.html"/> 5 <conclusion file="conclusion.html"/> 6 <background alignment="topleft" file="osx_installer_logo.png"/> 7 <pkg-ref id="org.nodejs.node.pkg" auth="root"/> 8 <pkg-ref id="org.nodejs.npm.pkg" auth="root"/> 9 <options customize="allow" require-scripts="false"/> 10 <license file="license.rtf"/> 11 <choices-outline> 12 <line choice="org.nodejs.node.pkg" /> 13 <line choice="org.nodejs.npm.pkg"/> 14 </choices-outline> 15 <choice id="org.nodejs.node.pkg" visible="true" title="Node.js {nodeversion}"> 16 <pkg-ref id="org.nodejs.node.pkg"/> 17 </choice> 18 <pkg-ref id="org.nodejs.node.pkg" version="{nodeversion}" onConclusion="none">node-{nodeversion}.pkg</pkg-ref> 19 <choice id="org.nodejs.npm.pkg" visible="true" title="npm {npmversion}"> 20 <pkg-ref id="org.nodejs.npm.pkg"/> 21 </choice> 22 <pkg-ref id="org.nodejs.npm.pkg" version="{npmversion}" onConclusion="none">npm-{npmversion}.pkg</pkg-ref> 23</installer-gui-script> 24