Skip to content

Commit

Permalink
upgrade mayor release
Browse files Browse the repository at this point in the history
  • Loading branch information
buddywinangun committed Dec 26, 2023
1 parent 3723543 commit c263d5b
Show file tree
Hide file tree
Showing 64 changed files with 3,332 additions and 974 deletions.
73 changes: 67 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ Semua perubahan penting pada proyek ini akan didokumentasikan dalam file ini.

| Release | Status | Initial Release | Active LTS Start | Maintenance LTS Start | End-of-life |
| :-----: | :-------------: | :-------------: | :--------------: | :-------------------: | :---------: |
| [1.x][] | **Maintenance** | 2017-10-19 | - | 2023-10-22 | TBD |
| [2.x][] | **Active LTS** | 2023-10-29 | 2023-10-30 | TBD | TBD |
| [3.x][] | **Current** | 2023-11-01 | TBD | TBD | TBD |
| 4.x | **Pending** | TBD | TBD | TBD | TBD |
| [1.x][] | **End-of-life** | 2017-10-19 | - | 2023-10-22 | 2023-10-29 |
| [2.x][] | **Maintenance** | 2023-10-29 | 2023-10-30 | 2023-11-01 | TBD |
| [3.x][] | **Active LTS** | 2023-11-01 | 2023-11-18 | TBD | TBD |
| [4.x][] | **Current** | 2023-12-26 | TBD | TBD | TBD |
| 5.x | **Pending** | TBD | TBD | TBD | TBD |

[1.x]: https://github.com/buddywinangun/gulp-xtend/tree/1.0.0
[2.x]: https://github.com/buddywinangun/gulp-xtend/tree/2.0.0
[3.x]: https://github.com/buddywinangun/gulp-xtend/tree/3.0.0
[4.x]: https://github.com/buddywinangun/gulp-xtend/tree/4.0.0

## Release Phases

Expand All @@ -30,6 +32,65 @@ Rilis baru dibuat dari branch `master` ke versi mayor *Active*. Lihat [Releases
Format didasarkan pada [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
dan menggunakan [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/buddywinangun/gulp-xtend/compare/3.0.0...HEAD)
## [Unreleased](https://github.com/buddywinangun/gulp-xtend/compare/5.0.0...HEAD)

## [Release Changelog](https://github.com/buddywinangun/gulp-xtend/releases)
## [Release Changelog](https://github.com/buddywinangun/gulp-xtend/releases)

## [4.0.0] - 2023-12-26

### Fixed

- Bug postinstall script
- Bug bin.js

### Changed

- gulpfile.js
- readme.md
- files config on package.json
- main config on package.json
- description config on package.json
- scripts postinstall on package.json
- Upgrade dependencies postcss
- Upgrade dependencies @babel/preset-env
- Upgrade dependencies @babel/core
- Upgrade task clean
- Upgrade task sass
- Upgrade task script
- Upgrade task static
- Upgrade task template
- Upgrade boileplate start

### Added

- lib alert
- task copy
- task favicon
- gulp.config.js file
- Dependencies twig templating
- Dependencies stylelint
- Dependencies gulp-yaml
- Dependencies gulp-util
- Dependencies gulp-uglify
- Dependencies gulp-stylelint
- Dependencies gulp-minify-html
- Dependencies gulp-load-plugins
- Dependencies gulp-imagemin
- Dependencies gulp-eslint
- Dependencies gulp-csso
- Dependencies real-favicon
- Dependencies pixrem

### Removed

- lib template
- task svgs
- task syncs
- config.js file
- Dependencies gulp4-run-sequence
- Dependencies gulp-sourcemaps
- Dependencies jsbeautifier
- Dependencies cssnano
- Dependencies rollup
- Dependencies rollup-plugin-glob-import
- Dependencies rollup-plugin-node-globals
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Fitur utama meliputi:
Alat pendukung yang tersedia untuk membangun proyek yang luar biasa.

- [**GULP 4**](https://gulpjs.com/) Otomatiskan dan tingkatkan alur kerja Anda.
- [**Nunjucks**](https://mozilla.github.io/nunjucks/) templating yang kaya dan kuat untuk JavaScript.
- [**Twig**](https://twig.symfony.com/) Mesin template modern.
- [**Browsersync**](https://browsersync.io/) dengan memuat ulang langsung.
- [**Sass**](http://sass-lang.com/) CSS pre-processor dengan [gulp-autoprefixer](https://www.npmjs.com/package/gulp-autoprefixer)
- [**Rollupjs**](https://rollupjs.org/) Bundel modul untuk JavaScript
Expand All @@ -38,17 +38,20 @@ Lihat [Release schedule](/CHANGELOG.md#release-schedule) untuk jadwal rilis terb

> Jika sebelumnya Anda telah menginstal gulp secara global, jalankan `npm rm --global gulp` sebelum mengikuti petunjuk berikut.
## Installation
## Quickstart

1. Create and Navigate to the newly project directory
```bash
mkdir my_directory; cd my_directory
```

2. Install dependencies
2. Install Gulp dependencies
```bash
npm install @buddywinangun/gulp-xtend
```
3. Run the compiler
```bash
npm start
```

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const opts = [];
const gulpfile = program.gulpfile ? program.gulpfile : 'node_modules/@buddywinangun/gulp-xtend/gulpfile.js';
const cwd = program.cwd ? program.cwd : process.cwd();

if (program.production) opts.push('--production');
if (program.production === true) opts.push('--production');
opts.push('--gulpfile', gulpfile);
opts.push('--cwd', cwd);

Expand Down
97 changes: 0 additions & 97 deletions config.js

This file was deleted.

Loading

0 comments on commit c263d5b

Please sign in to comment.