mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 23:12:24 -05:00
9b04392211
* Move Node output: /dist.js => /dist/node/scratch-vm.js * Move web output: /vm{.js,.min.js} => /dist/web/scratch-vm{.js,.min.js} * Update build output references in package.json and the playground's index.html * Move the VirtualMachine class out of index.js into its own file, referenced by index.js. The VirtualMachine class is otherwise unchanged. * Add .gitattributes rules for new file types which were added to this repository without specifying their text/binary attributes * Turn on source maps in webpack and add corresponding .gitignore rule
23 lines
275 B
Text
23 lines
275 B
Text
# Mac OS
|
|
.DS_Store
|
|
|
|
# NPM
|
|
/node_modules
|
|
npm-*
|
|
|
|
# Testing
|
|
/.nyc_output
|
|
/coverage
|
|
|
|
# IDEA
|
|
/.idea
|
|
|
|
# Build
|
|
/dist
|
|
/playground/assets
|
|
/playground/media
|
|
/playground/scratch-vm.js
|
|
/playground/scratch-vm.js.map
|
|
/playground/vendor.js
|
|
/playground/vendor.js.map
|
|
/playground/zenburn.css
|