| OLD | NEW |
| (Empty) |
| 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 | |
| 7 node extractRunner.js | |
| 8 | |
| 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 | |
| 16 | |
| 17 # Copy up the final output to the main MDN directory so we can check it in. | |
| 18 cp output/database.filtered.json database.json | |
| 19 cp output/obsolete.json . | |
| OLD | NEW |