An open API service indexing awesome lists of open source software.

https://github.com/hholymolly/gulp-template

Development starter template based on the Gulp builder
https://github.com/hholymolly/gulp-template

css gulp html js js-module minimization scss

Last synced: 9 months ago
JSON representation

Development starter template based on the Gulp builder

Awesome Lists containing this project

README

          

# ๐Ÿ“Œ gulp-template

---

## ๐Ÿš€ Installation and Launch

### 1. Installing `PNPM` ๐Ÿ“ฆ

Before starting development, install `PNPM`:

```sh
npm install -g pnpm
```

### 2. Installing Dependencies โš™๏ธ

With `PNPM`:

```sh
pnpm install
```

Alternatively, with `NPM`:

```sh
npm install
```

### 3. Running in Development Mode ๐Ÿ–ฅ๏ธ

With `PNPM`:

```sh
pnpm start
```

Alternatively, with `NPM`:

```sh
npm run start
```

### 4. Building the Project ๐Ÿ”จ

#### For Development:

With `PNPM`:

```sh
pnpm build:dev
```

Alternatively, with `NPM`:

```sh
npm run build:dev
```

#### For Production:

With `PNPM`:

```sh
pnpm build:prod
```

Alternatively, with `NPM`:

```sh
npm run build:prod
```

### 5. Cleaning the Project ๐Ÿงน

Removes `node_modules`, `dist`, and lock files:

With `PNPM`:

```sh
pnpm clean
```

Alternatively, with `NPM`:

```sh
npm run clean
```