mirror of
https://github.com/seigler/generative
synced 2025-07-26 14:56:08 +00:00
🐣 Brunch P5 skeleton
This commit is contained in:
commit
3402feb22c
9 changed files with 7607 additions and 0 deletions
29
brunch-config.js
Normal file
29
brunch-config.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
exports.files = {
|
||||
javascripts: {
|
||||
joinTo: {
|
||||
'app.js': /^app/
|
||||
}
|
||||
},
|
||||
stylesheets: {joinTo: 'app.css'}
|
||||
};
|
||||
|
||||
exports.modules = {
|
||||
autoRequire: {
|
||||
'app.js': ['initialize']
|
||||
}
|
||||
};
|
||||
|
||||
exports.plugins = {
|
||||
babel: {
|
||||
presets: ['env'],
|
||||
ignore: /^node_modules/
|
||||
},
|
||||
uglify: {
|
||||
ignored: /^node_modules/
|
||||
},
|
||||
copycat:{
|
||||
modules: ['node_modules/p5/lib/p5.min.js', 'node_modules/p5/lib/addons/p5.sound.min.js'],
|
||||
verbose : true,
|
||||
onlyChanged: true
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue