├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── bower.json ├── contributing.md ├── package.json ├── readme.md ├── tasks └── bower-requirejs.js └── test ├── fixtures ├── baseurl-config.js ├── baseurl-expected.js ├── config-expected.js ├── config.js ├── exclude-dev-config.js ├── exclude-dev-excpected.js ├── generated-config-expected.js ├── global-config-expected.js ├── global-config.js ├── pathless-config-expected.js ├── pathless-config.js ├── transitive-config.js └── transitive-expected.js ├── mocha.opts └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/bower.json -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/contributing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/bower-requirejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/tasks/bower-requirejs.js -------------------------------------------------------------------------------- /test/fixtures/baseurl-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/baseurl-config.js -------------------------------------------------------------------------------- /test/fixtures/baseurl-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/baseurl-expected.js -------------------------------------------------------------------------------- /test/fixtures/config-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/config-expected.js -------------------------------------------------------------------------------- /test/fixtures/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/config.js -------------------------------------------------------------------------------- /test/fixtures/exclude-dev-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/exclude-dev-config.js -------------------------------------------------------------------------------- /test/fixtures/exclude-dev-excpected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/exclude-dev-excpected.js -------------------------------------------------------------------------------- /test/fixtures/generated-config-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/generated-config-expected.js -------------------------------------------------------------------------------- /test/fixtures/global-config-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/global-config-expected.js -------------------------------------------------------------------------------- /test/fixtures/global-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/global-config.js -------------------------------------------------------------------------------- /test/fixtures/pathless-config-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/pathless-config-expected.js -------------------------------------------------------------------------------- /test/fixtures/pathless-config.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | shim: {} 3 | }); 4 | -------------------------------------------------------------------------------- /test/fixtures/transitive-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/transitive-config.js -------------------------------------------------------------------------------- /test/fixtures/transitive-expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/fixtures/transitive-expected.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --timeout 5000 3 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yeoman/grunt-bower-requirejs/HEAD/test/test.js --------------------------------------------------------------------------------