{"id":17650981,"url":"https://github.com/varemenos/grunt-boilerplate","last_synced_at":"2026-02-15T16:34:49.774Z","repository":{"id":146210320,"uuid":"42371516","full_name":"varemenos/grunt-boilerplate","owner":"varemenos","description":"A easy-to-use and modular beginning with grunt","archived":false,"fork":false,"pushed_at":"2017-03-14T09:40:41.000Z","size":8,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-07T07:07:32.109Z","etag":null,"topics":["grunt","grunt-boilerplate","grunt-configuration","grunt-task"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/varemenos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-12T20:13:55.000Z","updated_at":"2019-08-18T16:51:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"7197bbd8-d07d-4ef4-870a-d4ffba3acfb6","html_url":"https://github.com/varemenos/grunt-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/varemenos/grunt-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varemenos%2Fgrunt-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varemenos%2Fgrunt-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varemenos%2Fgrunt-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varemenos%2Fgrunt-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/varemenos","download_url":"https://codeload.github.com/varemenos/grunt-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varemenos%2Fgrunt-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29484656,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T15:33:17.885Z","status":"ssl_error","status_checked_at":"2026-02-15T15:32:53.698Z","response_time":118,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["grunt","grunt-boilerplate","grunt-configuration","grunt-task"],"created_at":"2024-10-23T11:39:55.730Z","updated_at":"2026-02-15T16:34:49.759Z","avatar_url":"https://github.com/varemenos.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grunt-boilerplate\n\n## Features\n\n1. Modular and clean Grunt configuration (via [load-grunt-configs](https://github.com/creynders/load-grunt-configs/)).\n2. No more `grunt.loadNpmTasks()`, all grunt tasks are automatically loaded (via [jit-grunt](https://github.com/shootaroo/jit-grunt)).\n3. Lazy-load Grunt tasks as needed, you no longer need to load a myriad of grunt tasks just so you can run the `grunt-contrib-concat`) (via [jit-grunt](https://github.com/shootaroo/jit-grunt)).\n4. Preconfigured watch task for your `gruntfile.js` and grunt tasks configurations so it will reload grunt if you modify them (via [tasks/config/watch.js](https://github.com/varemenos/grunt-boilerplate/blob/master/tasks/config/watch.js#L2-L10)).\n5. Load custom tasks from `./tasks` (via [grunt.task.loadTasks](https://github.com/varemenos/grunt-boilerplate/blob/master/Gruntfile.js#L16)).\n6. Your suggestions and feature requests goes here\n\n## Installation\n\n1) First you have to download the files in your current working directory:\n\n```shell\nwget https://github.com/varemenos/grunt-boilerplate/archive/master.zip\nunzip master\nmv grunt-boilerplate-master/* .\nrm -r grunt-boilerplate-master master tasks/sample LICENSE README.md\n```\n\n2) Then you have to install grunt and the boilerplate's required grunt tasks:\n\n```shell\nnpm i -D grunt grunt-contrib-watch jit-grunt load-grunt-configs\n```\n\n## Content \u0026 Structure\n\nThe boilerplate consists of a `Gruntfile.js` file and a `tasks` directory.\n\n```\n.\n├── Gruntfile.js\n└── tasks\n```\n\n### The `Gruntfile.js` file\n\nThis is the grunt configuration file which contains all the necessary commands to load any grunt-tasks you've installed via npm and are currently in your node_modules directory\n\n### The `tasks` directory\n\nIn the `tasks` directory there are 2 things you can do.\n\n1. Add your customs tasks.\n2. Add your task configurations inside the `config` subdirectory (like for example the `watch.js` file which is the configuration file for the `grunt-contrib-watch` task).\n\n```\n.\n├── Gruntfile.js\n└── tasks\n  └── custom_task_1.js\n  └── another-one.js\n  └── config\n    └── watch.js\n    └── sass.js\n    └── uglify.js\n```\n\n### Sample task file\n\n```js\nmodule.exports = {\n    my_task: {\n        options: {\n            async: true\n        },\n        dist: {\n            src: ['input.js'],\n            dest: 'output.js'\n        }\n    }\n};\n```\n\nYou can find more examples [here](https://github.com/varemenos/grunt-boilerplate/tree/master/tasks/sample).\n\n## License\n\nThe MIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaremenos%2Fgrunt-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvaremenos%2Fgrunt-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaremenos%2Fgrunt-boilerplate/lists"}