mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 05:53:43 -05:00
Depend on script dependencies for downstream webpack
Downstream webpack will need any dependencies src/ depends on so it can successfully build. Also if multiple packages being built into a larger script share a common dependency version range, they can share the dependency instead of duplicating it. This will save built file size, execution time, and memory.
This commit is contained in:
parent
6cbe1b9e0f
commit
d5d6ab9eb8
2 changed files with 11 additions and 4 deletions
10
package.json
10
package.json
|
@ -3,6 +3,7 @@
|
|||
"version": "0.1.0",
|
||||
"description": "audio engine for scratch 3.0",
|
||||
"main": "dist.js",
|
||||
"browser": "./src/index.js",
|
||||
"scripts": {
|
||||
"test": "npm run lint && npm run build",
|
||||
"build": "webpack --bail",
|
||||
|
@ -20,8 +21,12 @@
|
|||
"url": "https://github.com/LLK/scratch-audio/issues"
|
||||
},
|
||||
"homepage": "https://github.com/LLK/scratch-audio#readme",
|
||||
"devDependencies": {
|
||||
"dependencies": {
|
||||
"audio-context": "1.0.1",
|
||||
"minilog": "^3.0.1",
|
||||
"startaudiocontext": "1.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.24.1",
|
||||
"babel-eslint": "^7.2.2",
|
||||
"babel-loader": "^6.4.1",
|
||||
|
@ -29,9 +34,6 @@
|
|||
"eslint": "^3.19.0",
|
||||
"eslint-config-scratch": "^3.1.0",
|
||||
"json": "^9.0.6",
|
||||
"minilog": "^3.0.1",
|
||||
"soundfont-player": "0.10.5",
|
||||
"startaudiocontext": "1.2.1",
|
||||
"travis-after-all": "^1.4.4",
|
||||
"webpack": "2.4.0"
|
||||
}
|
||||
|
|
|
@ -20,5 +20,10 @@ module.exports = {
|
|||
presets: ['es2015']
|
||||
}
|
||||
}]
|
||||
},
|
||||
externals: {
|
||||
'audio-context': true,
|
||||
'minilog': true,
|
||||
'startaudiocontext': true
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue