All Projects → gruntjs → Grunt Cli

gruntjs / Grunt Cli

Licence: mit
Grunt's command line interface.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Grunt Cli

Open Source Mac Os Apps
🚀 Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps
Stars: ✭ 28,908 (+3994.62%)
Mutual labels:  hacktoberfest
Fae
CMS for Rails. For Reals.
Stars: ✭ 701 (-0.71%)
Mutual labels:  hacktoberfest
Team Comtress 2
Team Fortress 2, but with a lot of fixes, QoL improvements and performance optimizations!
Stars: ✭ 701 (-0.71%)
Mutual labels:  hacktoberfest
Tidb
TiDB is an open source distributed HTAP database compatible with the MySQL protocol
Stars: ✭ 29,871 (+4131.02%)
Mutual labels:  hacktoberfest
Filmy
🎥 Material designed awesome movie app which is powered by tmdb.
Stars: ✭ 697 (-1.27%)
Mutual labels:  hacktoberfest
Tech Refrigerator
🍰 기술 냉장고입니다. 🛒 기술 면접 , 전공 시험 , 지식 함양 등 분명 도움될 거예요! 🤟
Stars: ✭ 699 (-0.99%)
Mutual labels:  hacktoberfest
Powershell
PowerShell for every system!
Stars: ✭ 31,244 (+4325.5%)
Mutual labels:  hacktoberfest
Laravel Boilerplate
Laravel Boilerplate / Starter Kit with Gentelella Admin Theme
Stars: ✭ 704 (-0.28%)
Mutual labels:  hacktoberfest
Hex
Package manager for the Erlang VM
Stars: ✭ 699 (-0.99%)
Mutual labels:  hacktoberfest
Haproxy Ingress
HAProxy Ingress
Stars: ✭ 702 (-0.57%)
Mutual labels:  hacktoberfest
React Native Web Monorepo
Code sharing between iOS, Android & Web using monorepo
Stars: ✭ 697 (-1.27%)
Mutual labels:  hacktoberfest
Rotki
A portfolio tracking, analytics, accounting and tax reporting application that protects your privacy
Stars: ✭ 689 (-2.41%)
Mutual labels:  hacktoberfest
Prologue
Prologue is an elegant web framework written in Nim.
Stars: ✭ 700 (-0.85%)
Mutual labels:  hacktoberfest
Bat
A cat(1) clone with wings.
Stars: ✭ 30,833 (+4267.28%)
Mutual labels:  hacktoberfest
Awesome Startup
😎 All the required resources to build your own startup
Stars: ✭ 702 (-0.57%)
Mutual labels:  hacktoberfest
Date Fns
⏳ Modern JavaScript date utility library ⌛️
Stars: ✭ 27,650 (+3816.43%)
Mutual labels:  hacktoberfest
Silverstripe Framework
SilverStripe Framework, the MVC framework that powers SilverStripe CMS
Stars: ✭ 700 (-0.85%)
Mutual labels:  hacktoberfest
Natasha
基于 Roslyn 的 C# 动态程序集构建库,该库允许开发者在运行时使用 C# 代码构建域 / 程序集 / 类 / 结构体 / 枚举 / 接口 / 方法等,使得程序在运行的时候可以增加新的模块及功能。Natasha 集成了域管理/插件管理,可以实现域隔离,域卸载,热拔插等功能。 该库遵循完整的编译流程,提供完整的错误提示, 可自动添加引用,完善的数据结构构建模板让开发者只专注于程序集脚本的编写,兼容 stanadard2.0 / netcoreapp3.0+, 跨平台,统一、简便的链式 API。 且我们会尽快修复您的问题及回复您的 issue.
Stars: ✭ 705 (-0.14%)
Mutual labels:  hacktoberfest
Asimov
Automatically exclude development dependencies from Apple Time Machine backups
Stars: ✭ 705 (-0.14%)
Mutual labels:  hacktoberfest
Oak
Meaningful control of data in distributed systems.
Stars: ✭ 698 (-1.13%)
Mutual labels:  hacktoberfest

grunt-cli Build Status: Linux Build Status: Windows

The Grunt command line interface.

Install this globally and you'll have access to the grunt command anywhere on your system.

npm install -g grunt-cli

Note: The job of the grunt command is to load and run the version of Grunt you have installed locally to your project, irrespective of its version. Starting with Grunt v0.4, you should never install Grunt itself globally. For more information about why, please read this.

See the Getting Started guide for more information.

Shell tab auto-completion

To enable tab auto-completion for Grunt, add one of the following lines to your ~/.bashrc or ~/.zshrc file.

# Bash, ~/.bashrc
eval "$(grunt --completion=bash)"
# Zsh, ~/.zshrc
eval "$(grunt --completion=zsh)"

Installing grunt-cli locally

If you prefer the idiomatic Node.js method to get started with a project (npm install && npm test) then install grunt-cli locally with npm install grunt-cli --save-dev. Then add a script to your package.json to run the associated grunt command: "scripts": { "test": "grunt test" }. Now npm test will use the locally installed ./node_modules/.bin/grunt executable to run your Grunt commands.

To read more about npm scripts, please visit the npm docs: https://docs.npmjs.com/misc/scripts.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].