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
- Host: GitHub
- URL: https://github.com/hholymolly/gulp-template
- Owner: hHolyMolly
- Created: 2022-07-13T07:54:18.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-21T20:50:21.000Z (about 1 year ago)
- Last Synced: 2025-03-02T19:17:20.264Z (about 1 year ago)
- Topics: css, gulp, html, js, js-module, minimization, scss
- Language: JavaScript
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```