get-latest-phaser.sh 484 B

1234567891011121314151617181920
  1. cd ..
  2. export PHASER=~/Documents/Phaser/phaser
  3. export PHASER_DIST=$PHASER/dist
  4. export PHASER_TYPES=$PHASER/types
  5. export PHASER_PLUGIN=source/editor/plugins/phasereditor2d.phaser
  6. # phaser dist
  7. rm -R $PHASER_PLUGIN/scripts/*.js
  8. cp $PHASER_DIST/phaser.js $PHASER_PLUGIN/scripts/
  9. cp $PHASER_DIST/phaser.min.js $PHASER_PLUGIN/scripts/
  10. # phaser types
  11. cp $PHASER_TYPES/phaser.d.ts $PHASER_PLUGIN/src/phaser/phaser.ts
  12. cp $PHASER_TYPES/matter.d.ts $PHASER_PLUGIN/src/phaser/matter.ts