| OLD | NEW |
| 1 This contains all the Polymer 1.X elements used in swarming. | 1 This contains all the Polymer 1.X elements used in swarming. |
| 2 | 2 |
| 3 To clean and build the pages for deploying, run | 3 To clean and build the pages for deploying, run |
| 4 | 4 |
| 5 npm install # Need to only run once to set up dev dependencies. | 5 npm install # Need to only run once to set up dev dependencies. |
| 6 make vulcanize | 6 make vulcanize |
| 7 | 7 |
| 8 This combines all of the elements needed to display the page into several | 8 This combines all of the elements needed to display the page into several |
| 9 "single-page" apps, like the bot-list. | 9 "single-page" apps, like the bot-list. |
| 10 These are checked into version control so that they may be easily redeployed w/o | 10 These are checked into version control so that they may be easily redeployed w/o |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 sudo apt-get install npm nodejs-legacy | 39 sudo apt-get install npm nodejs-legacy |
| 40 sudo npm install -g bower | 40 sudo npm install -g bower |
| 41 | 41 |
| 42 | 42 |
| 43 If you don't want to install npm globally, try | 43 If you don't want to install npm globally, try |
| 44 | 44 |
| 45 echo prefix = ~/foo/bar >> ~/.npmrc | 45 echo prefix = ~/foo/bar >> ~/.npmrc |
| 46 curl https://www.npmjs.org/install.sh | sh | 46 curl https://www.npmjs.org/install.sh | sh |
| 47 ~/foo/bar/npm install -g bower | 47 ~/foo/bar/npm install -g bower |
| OLD | NEW |