Comparing version 1.4.1 to 1.5.0
#! /usr/bin/env node | ||
var shell = require("shelljs"); | ||
console.log('Available commands: gcom, gpush, gcap, gbuild, gtail, greact, gitro'); | ||
console.log(`Available commands: | ||
gcom : Adds and commits ALL files, | ||
gpush : Pulls from remote server to prevent issues and pushes ALL committed/staged files, | ||
gcap : Runs gcom and gpush commands, | ||
gbuild : Compiles TailwindCSS, | ||
gtail : Installs TailwindCSS and its dependencies, | ||
greact : Installs React, ReactDOM and React-router-dom@5, | ||
gexpress: Installs ExpressJS and other useful dependencies for development, | ||
gmern : Install Express, React and their dependencies for a basic MERN app, | ||
gitro : Runs gbuild, gcom and gpush all at once`); |
#! /usr/bin/env node | ||
var shell = require("shelljs"); | ||
shell.exec("npm install --save react-dom react-router-dom@5"); | ||
shell.exec("npm install --save react react-dom react-router-dom@5"); | ||
console.log('ReactDOM and React Router have been installed'); |
{ | ||
"name": "gitro", | ||
"version": "1.4.1", | ||
"description": "Run common Git and Tailwindcss commands fast and easily!", | ||
"version": "1.5.0", | ||
"description": "Run common JS development commands fast and easily!", | ||
"main": "index.js", | ||
@@ -16,5 +16,7 @@ "scripts": {}, | ||
"gitro-commit-push": "bin/gitro-cap.js", | ||
"gtail": "bin/git-tail-init.js", | ||
"gtail": "bin/gitro-tail-init.js", | ||
"greact": "bin/gitro-react.js", | ||
"gexpress": "bin/gitro-express.js", | ||
"ghelp": "bin/gitro-help.js", | ||
"gmern": "bin/gitro-mern.js", | ||
"gitro": "bin/gitro.js" | ||
@@ -21,0 +23,0 @@ }, |
******* Gitro NPM package ******* | ||
Version 1.4.1 | ||
Version 1.5.0 | ||
@@ -30,2 +30,3 @@ Gitro allows you to run the multiple Git commands and TailwindCSS compilation with one command. Gitro is TOTALLY free, open-source, easy to edit & install. | ||
SUMMARY : Input file: /src/style.css | Output file: /src/assets/main.css | ||
You can change this by editing the gitro-tailwind.js file in the package | ||
@@ -39,6 +40,14 @@ | ||
-> To install ReactJS ReactDOM and React Router (v5) | ||
-> To install Express, Mongoose, Concurrently, Nodemon & Body-parser | ||
> gexpress | ||
-> To install ReactJS, ReactDOM and React Router (v5) | ||
> greact | ||
-> To install MERN stack dependencies (ReactJS, ExpressJS and their dependencies) | ||
> gmern | ||
-> To install and initialize TailwindCSS | ||
@@ -83,10 +92,9 @@ | ||
CHANGELOG | ||
1.4.0 - Added Tailwindcss install and init commands | ||
Added 'git pull' to the 'gpush' command | ||
Added a 'ghelp' command to list available commands | ||
Added ReactJS one-command dependencies installer (install react-router-dom@5 which uses 'switch' instead of 'routes') | ||
You do not need to run gbuild everytime you use a TailwindCSS class anymore | ||
1.5.0 - Added ExpressJS development dependencies installation command, added React itself to the "greact" command in case you don't have React installed already for that project, added a MERN dependencies installation command | ||
1.4.1 - Added Tailwindcss install and init commands, added 'git pull' to the 'gpush' command, added a 'ghelp' command to list available commands, added ReactJS one-command dependencies installer (install react-router-dom@5 which uses 'switch' instead of 'routes'), You do not need to run gbuild everytime you use a TailwindCSS class anymore | ||
1.3.1 - Changed commit message | ||
1.3.0 - Changed "push" command to include upstream |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6266
12
34
97