├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── help ├── README.md ├── WordPress.md ├── examples.md ├── images │ ├── example1-simple.png │ ├── example2-js.png │ └── example3-composer.png ├── spec.md └── troubleshooting.md ├── index.js ├── jsdoc.json ├── lib ├── Dependency.js ├── Manifest.js ├── README.md ├── buildGlobs.js ├── processManifest.js ├── readManifest.js └── types.json ├── package.json ├── site └── index.html └── test ├── fixtures ├── bower.json ├── invalid.json ├── manifest-missing.json ├── manifest-mixed.json ├── manifest-v1.json ├── manifest.json ├── sage.json ├── sampleMainBowerFiles.json ├── types.json └── verbose.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | site 3 | help 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/appveyor.yml -------------------------------------------------------------------------------- /help/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/README.md -------------------------------------------------------------------------------- /help/WordPress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/WordPress.md -------------------------------------------------------------------------------- /help/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/examples.md -------------------------------------------------------------------------------- /help/images/example1-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/images/example1-simple.png -------------------------------------------------------------------------------- /help/images/example2-js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/images/example2-js.png -------------------------------------------------------------------------------- /help/images/example3-composer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/images/example3-composer.png -------------------------------------------------------------------------------- /help/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/spec.md -------------------------------------------------------------------------------- /help/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/help/troubleshooting.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/index.js -------------------------------------------------------------------------------- /jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/jsdoc.json -------------------------------------------------------------------------------- /lib/Dependency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/Dependency.js -------------------------------------------------------------------------------- /lib/Manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/Manifest.js -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/buildGlobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/buildGlobs.js -------------------------------------------------------------------------------- /lib/processManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/processManifest.js -------------------------------------------------------------------------------- /lib/readManifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/readManifest.js -------------------------------------------------------------------------------- /lib/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/lib/types.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/package.json -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/site/index.html -------------------------------------------------------------------------------- /test/fixtures/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/bower.json -------------------------------------------------------------------------------- /test/fixtures/invalid.json: -------------------------------------------------------------------------------- 1 | lmao this ain't no json 2 | -------------------------------------------------------------------------------- /test/fixtures/manifest-missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/manifest-missing.json -------------------------------------------------------------------------------- /test/fixtures/manifest-mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/manifest-mixed.json -------------------------------------------------------------------------------- /test/fixtures/manifest-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/manifest-v1.json -------------------------------------------------------------------------------- /test/fixtures/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/manifest.json -------------------------------------------------------------------------------- /test/fixtures/sage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/sage.json -------------------------------------------------------------------------------- /test/fixtures/sampleMainBowerFiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/sampleMainBowerFiles.json -------------------------------------------------------------------------------- /test/fixtures/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/types.json -------------------------------------------------------------------------------- /test/fixtures/verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/fixtures/verbose.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/austinpray/asset-builder/HEAD/test/test.js --------------------------------------------------------------------------------