Skip to content

Releases: Orbitale/Gulpfile

v2.0.2

14 Sep 14:32
Compare
Choose a tag to compare
  • Replaced old js minifier (was kinda buggy and not really well maintained).
  • Added a test task. Its goal is to check that all configured source files are dumped with the dump task. If it is not the case, the exit code will be 1.

v2.0.1

20 Jun 19:19
Compare
Choose a tag to compare

Apply v1.3.1 updates:

Before executing any task, the gulpfile will check for any missing file.

This is useful to avoid totally silent problems from gulp when files are missing and gulp says nothing about this.

v1.3.1

20 Jun 19:18
Compare
Choose a tag to compare

Before executing any task, the gulpfile will check for any missing file.

This is useful to avoid totally silent problems from gulp when files are missing and gulp says nothing about this.

v2.0.0

09 Apr 19:25
Compare
Choose a tag to compare

All previous updates from v1 but this v2 supports Gulp 4 (which is in alpha state for now)

v1.3.0

09 Apr 19:24
Compare
Choose a tag to compare
  • Added a new copy command to copy files or directories without altering them
  • Now compatible with Node6 and 7
  • Completely refactored tests
  • Migrate some code to ECMA6 and normalize comments & internal docs
  • Create a new branch for Gulp 4 support

v1.2.3

22 Jun 09:54
Compare
Choose a tag to compare

Fixes

[45a0db4] Fix stupidity in watch command

v1.2.2

11 Jun 09:34
Compare
Choose a tag to compare

Fixes

[5760e85] Fix watch command

v1.2.1

11 Jun 09:09
Compare
Choose a tag to compare

Fixes

[cb96d53] Fix watch typo

v1.2.0

10 Jun 21:15
Compare
Choose a tag to compare

Improvements

[a8dcb1f] Load certain extensions only when needed

Fixes

[97d43b9] Fix --prod issue: was caused by polyfills...

Added tests!

[d6980e0] Fixed tests, waiting for CI now
[426a999] Avoid travis to install npm deps twice
[4d8f0bd] Update test script to fix directory bug
[a86427a] Update travis script
[18ba351] Added a single script for testing, updated travis config
[e2b9f58] Add other test preparation
[4e9dfba] First work to integrate some travis-ci

v1.1.0

01 Jun 09:36
Compare
Choose a tag to compare

[220d3a5] Add files_to_watch configuration option: it will run the dump command on each file change in this list.
[d36edfd] Quite big update:

  • Add gitignore file.
  • Remove examples and replaced them with comments.
  • Replaced cssnano with clean-css (seems to be faster and less conflictual...)
  • Put tasks in "if"s when they're not available, it helps having faster watch and dump commands for example when you don't have anything in some config options. For example, if you only have js and less configured, images, css and sass will never be executed. Saves memory and time.
  • Optimized a little the code
  • Make "dump" use only specified tasks to be faster (view [d36edfd] too)

[aa20133] Update README.md to fix some terms and add docs
[a722b64] Add images support with imagemin to compress images in a specific directory.
[ffc0d2a] Removed autoprefixer, useless in this world of brand new nightly-updated browsers (and less conflictual too, yep).