-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from audiocogs/browserify
Switch build system to Browserify
- Loading branch information
Showing
16 changed files
with
2,510 additions
and
2,483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/node_modules/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
browser: src/*.js | ||
mkdir -p build/ | ||
./node_modules/.bin/browserify \ | ||
--extension .coffee \ | ||
--transform browserify-shim \ | ||
--debug \ | ||
. \ | ||
| ./node_modules/.bin/exorcist build/aac.js.map > build/aac.js | ||
|
||
clean: | ||
rm -rf build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "aac", | ||
"version": "0.1.0", | ||
"description": "An AAC decoder for Aurora.js", | ||
"main": "src/decoder.js", | ||
"peerDependencies": { | ||
"av": "~0.4.0" | ||
}, | ||
"devDependencies": { | ||
"exorcist": "^0.1.6", | ||
"browserify": "^4.1.10", | ||
"browserify-shim": "^3.5.0" | ||
}, | ||
"browserify": { | ||
"transform": ["browserify-shim"] | ||
}, | ||
"browserify-shim": { | ||
"av": "global:AV" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/audiocogs/aac.js" | ||
}, | ||
"keywords": [ | ||
"audio", | ||
"av", | ||
"aurora.js", | ||
"aurora", | ||
"decode" | ||
], | ||
"author": "Devon Govett <[email protected]>", | ||
"license": "LGPL", | ||
"bugs": { | ||
"url": "https://github.com/audiocogs/aac.js/issues" | ||
}, | ||
"homepage": "https://github.com/audiocogs/aac.js" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.