├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── lib └── systemJsProduction.js ├── package.json └── test ├── assetGraphBuild.js ├── assetGraphTrace.js ├── sample_app ├── app │ ├── dep.js │ └── main.js ├── config.js └── index.html └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/README.md -------------------------------------------------------------------------------- /lib/systemJsProduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/lib/systemJsProduction.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/package.json -------------------------------------------------------------------------------- /test/assetGraphBuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/test/assetGraphBuild.js -------------------------------------------------------------------------------- /test/assetGraphTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/test/assetGraphTrace.js -------------------------------------------------------------------------------- /test/sample_app/app/dep.js: -------------------------------------------------------------------------------- 1 | console.log('dep'); 2 | -------------------------------------------------------------------------------- /test/sample_app/app/main.js: -------------------------------------------------------------------------------- 1 | require('dep'); 2 | console.log('app main'); 3 | -------------------------------------------------------------------------------- /test/sample_app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/test/sample_app/config.js -------------------------------------------------------------------------------- /test/sample_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/test/sample_app/index.html -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocardless/systemjs-assetgraph/HEAD/test/test.sh --------------------------------------------------------------------------------