| OLD | NEW |
| 1 ../../../frog/minfrog --out=output/extract.dart.js --enable_type_checks --compil
e-only extract.dart | 1 |
| 2 BUILT_DIR=../../../out/ReleaseIA32 |
| 3 DART2JS=$BUILT_DIR/dart2js |
| 4 DARTVM=$BUILT_DIR/dart |
| 5 |
| 6 $DART2JS -ooutput/extract.dart.js -c extract.dart |
| 2 node extractRunner.js | 7 node extractRunner.js |
| 3 ../../../frog/minfrog postProcess.dart | 8 |
| 4 ../../../frog/minfrog prettyPrint.dart | 9 # Read database.json, |
| 10 # write database.filtered.json (with "best" entries) |
| 11 # and obsolete.json (with entries marked obsolete). |
| 12 $DARTVM postProcess.dart |
| 13 |
| 14 # Create database.html, examples.html, and obsolete.html. |
| 15 $DARTVM prettyPrint.dart |
| 5 | 16 |
| 6 # Copy up the final output to the main MDN directory so we can check it in. | 17 # Copy up the final output to the main MDN directory so we can check it in. |
| 7 cp output/database.filtered.json database.json | 18 cp output/database.filtered.json database.json |
| 8 cp output/obsolete.json . | 19 cp output/obsolete.json . |
| OLD | NEW |