├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── docs ├── README.tmpl.md ├── getting-started.md ├── overview.md ├── version-examples.md └── version-options.md ├── package.json ├── tasks └── version.js └── test ├── fixtures ├── assets │ ├── assets-manifest-querystring.json │ ├── assets-manifest.json │ ├── css │ │ ├── 45f8aa1a.custom.min.css │ │ ├── 45f8aa1a.main.min.css │ │ ├── 51ea7191.main.min.css │ │ ├── custom.min.css │ │ ├── main.45f8aa1a.min.css │ │ ├── main.51ea7191.min.css │ │ └── main.min.css │ ├── js │ │ ├── 71a67acb.scripts.min.js │ │ ├── bbe2121b.scripts.min.js │ │ ├── scripts.71a67acb.min.js │ │ ├── scripts.bbe2121b.min.js │ │ └── scripts.min.js │ ├── manifest.json │ └── manifest_withConfig.json ├── index.html ├── lib │ ├── scripts.php │ ├── scripts2.php │ └── scripts3.php ├── script2.php ├── script3.php └── scripts.php └── version_test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.tmpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/docs/README.tmpl.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/docs/overview.md -------------------------------------------------------------------------------- /docs/version-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/docs/version-examples.md -------------------------------------------------------------------------------- /docs/version-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/docs/version-options.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/package.json -------------------------------------------------------------------------------- /tasks/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/tasks/version.js -------------------------------------------------------------------------------- /test/fixtures/assets/assets-manifest-querystring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/assets-manifest-querystring.json -------------------------------------------------------------------------------- /test/fixtures/assets/assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/assets-manifest.json -------------------------------------------------------------------------------- /test/fixtures/assets/css/45f8aa1a.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/45f8aa1a.custom.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/45f8aa1a.main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/45f8aa1a.main.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/51ea7191.main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/51ea7191.main.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/custom.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/main.45f8aa1a.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/main.45f8aa1a.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/main.51ea7191.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/main.51ea7191.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/css/main.min.css -------------------------------------------------------------------------------- /test/fixtures/assets/js/71a67acb.scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/js/71a67acb.scripts.min.js -------------------------------------------------------------------------------- /test/fixtures/assets/js/bbe2121b.scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/js/bbe2121b.scripts.min.js -------------------------------------------------------------------------------- /test/fixtures/assets/js/scripts.71a67acb.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/js/scripts.71a67acb.min.js -------------------------------------------------------------------------------- /test/fixtures/assets/js/scripts.bbe2121b.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/js/scripts.bbe2121b.min.js -------------------------------------------------------------------------------- /test/fixtures/assets/js/scripts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/js/scripts.min.js -------------------------------------------------------------------------------- /test/fixtures/assets/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/manifest.json -------------------------------------------------------------------------------- /test/fixtures/assets/manifest_withConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/assets/manifest_withConfig.json -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/lib/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/lib/scripts.php -------------------------------------------------------------------------------- /test/fixtures/lib/scripts2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/lib/scripts2.php -------------------------------------------------------------------------------- /test/fixtures/lib/scripts3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/lib/scripts3.php -------------------------------------------------------------------------------- /test/fixtures/script2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/script2.php -------------------------------------------------------------------------------- /test/fixtures/script3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/script3.php -------------------------------------------------------------------------------- /test/fixtures/scripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/fixtures/scripts.php -------------------------------------------------------------------------------- /test/version_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/grunt-wp-assets/HEAD/test/version_test.js --------------------------------------------------------------------------------