├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── README.md ├── appveyor.yml ├── package.json ├── tasks └── cdnify.js └── test ├── cdnify_test.js ├── expected ├── sample-custom-options.html ├── sample.css └── sample.html └── fixtures ├── sample.css └── sample.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | test/output 5 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/package.json -------------------------------------------------------------------------------- /tasks/cdnify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/tasks/cdnify.js -------------------------------------------------------------------------------- /test/cdnify_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/cdnify_test.js -------------------------------------------------------------------------------- /test/expected/sample-custom-options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/expected/sample-custom-options.html -------------------------------------------------------------------------------- /test/expected/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/expected/sample.css -------------------------------------------------------------------------------- /test/expected/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/expected/sample.html -------------------------------------------------------------------------------- /test/fixtures/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/fixtures/sample.css -------------------------------------------------------------------------------- /test/fixtures/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callumlocke/grunt-cdnify/HEAD/test/fixtures/sample.html --------------------------------------------------------------------------------