Skip to content

Releases: infinitered/gluegun

v2.1.0

11 Jan 16:40
Compare
Choose a tag to compare

2.1.0 (2019-01-11)

Features

  • config: Adds loadConfig function to toolbox.config object (#433) [skip ci] (b9e43c3)
  • meta: Adds default plugin source path to toolbox.meta (#432) [skip ci] (4dbd484)
  • types: Strengthens GluegunToolbox type guarantee (#444) (789783f)

v2.0.7

02 Jan 20:32
Compare
Choose a tag to compare

2.0.7 (2019-01-02)

Bug Fixes

v2.0.5

29 Dec 23:01
Compare
Choose a tag to compare

2.0.5 (2018-12-29)

Bug Fixes

  • perf: Lazy requires to improve performance (#437) (06004c8)
  • perf: Removes ramda (#436) [skip ci] (79695bd)
  • template: fixes #430 -- remove yarn.lock from .gitignore (#434) [skip ci] (42f25b8)
  • template: Remove lock files from doc gitignore (#435) [skip ci] (1bd4f74)

v2.0.4

27 Dec 05:49
Compare
Choose a tag to compare

2.0.4 (2018-12-27)

Bug Fixes

  • types: parameters.options is no longer optional (fixes #378) (#428) (2d05f6a)

v2.0.3

23 Dec 02:20
Compare
Choose a tag to compare

2.0.3 (2018-12-23)

Bug Fixes

  • build: Removes direct access files from repo, adds to build pipeline instead (#426) (fb1670e)
  • windows: Adds types to extensible toolbox and fixes build and test on Windows (#419) (bccda38)

v2.0.2

23 Dec 00:43
Compare
Choose a tag to compare

2.0.2 (2018-12-23)

Bug Fixes

  • cli: Adds shortcut to speed up --version in gluegun CLI (#423) (6cf41a8)
  • help: Fix command name printing (#395) (010346a)
  • template: Add documentation for ts-node and declaration files (#420) (e2fdfe8)

v2.0.1

20 Dec 19:25
Compare
Choose a tag to compare

2.0.1 (2018-12-20)

Bug Fixes

  • cli: Typescript improvement to CLI commands (#414) (bded7b4)
  • deps: Upgraded most dependencies (fs-jetpack and enquirer were not able to be updated)

Version 2.0.0

19 Dec 20:00
Compare
Choose a tag to compare

Version 2.0.0

⭐️ Version 2.0.0 is now released! ⭐️

Read the blog post to learn more:

https://shift.infinite.red/announcing-gluegun-2-0-a-delightful-way-to-build-command-line-apps-in-node-936f9ab9916d

Version 2.0.0-beta.11

11 May 18:40
Compare
Choose a tag to compare
Version 2.0.0-beta.11 Pre-release
Pre-release

This version fixes an issue where commands & parameters with the same name would get collapsed accidentally. It also bumps all dependencies. It should be backwards-compatible.

Beta 8

17 Apr 05:01
Compare
Choose a tag to compare
Beta 8 Pre-release
Pre-release

So, that gluegun/toolbox thing that was introduced in Beta 7?

Yeah, that didn't last long.

You now import directly from Gluegun (again) (examples in TypeScript):

import { print, prompt, filesystem } from 'gluegun/toolbox'

// change to

import { print, prompt, filesystem } from 'gluegun'

You can also import specific ones, now:

import { print } from 'gluegun/print'

Other changes

☝️ Adds direct access to tools from Gluegun #379 by @jamonholmgren
🤡 Converts from Ava to Jest tests #377 by @jamonholmgren
🥌 Removes gluegun/toolbox, refactors core extension loading #376 by @jamonholmgren
docs(help): Fix help override example #375 by @cmckni3
🎛 Switches ToolboxParameters to GluegunParameters #373 by @jamonholmgren