From 1fd04d6749892326150ac3dcb564b0511fbc010e Mon Sep 17 00:00:00 2001 From: George Zahariev Date: Fri, 3 Apr 2020 19:08:05 -0700 Subject: [PATCH] 0.9.1 --- README.md | 2 +- lib/index.js | 2 +- package.json | 2 +- package.json.ls | 2 +- src/index.ls | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 61d6a7b..b1c5391 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Other helpful features include reformatting the help text based on the size of t ## About Optionator uses [type-check](https://github.com/gkz/type-check) and [levn](https://github.com/gkz/levn) behind the scenes to cast and verify input according the specified types. -MIT license. Version 0.9.0 +MIT license. Version 0.9.1 npm install optionator diff --git a/lib/index.js b/lib/index.js index f4a985e..20d914b 100644 --- a/lib/index.js +++ b/lib/index.js @@ -1,7 +1,7 @@ // Generated by LiveScript 1.6.0 (function(){ var VERSION, ref$, id, map, compact, any, groupBy, partition, chars, isItNaN, keys, Obj, camelize, deepIs, closestString, nameToRaw, dasherize, naturalJoin, generateHelp, generateHelpForOption, parsedTypeCheck, parseType, parseLevn, camelizeKeys, parseString, main, toString$ = {}.toString, slice$ = [].slice, arrayFrom$ = Array.from || function(x){return slice$.call(x);}; - VERSION = '0.9.0'; + VERSION = '0.9.1'; ref$ = require('prelude-ls'), id = ref$.id, map = ref$.map, compact = ref$.compact, any = ref$.any, groupBy = ref$.groupBy, partition = ref$.partition, chars = ref$.chars, isItNaN = ref$.isItNaN, keys = ref$.keys, Obj = ref$.Obj, camelize = ref$.camelize; deepIs = require('deep-is'); ref$ = require('./util'), closestString = ref$.closestString, nameToRaw = ref$.nameToRaw, dasherize = ref$.dasherize, naturalJoin = ref$.naturalJoin; diff --git a/package.json b/package.json index 024bf3e..83fb1c2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "optionator", - "version": "0.9.0", + "version": "0.9.1", "author": "George Zahariev ", "description": "option parsing and help generation", "homepage": "https://github.com/gkz/optionator", diff --git a/package.json.ls b/package.json.ls index affb07e..4666dc4 100644 --- a/package.json.ls +++ b/package.json.ls @@ -1,5 +1,5 @@ name: 'optionator' -version: '0.9.0' +version: '0.9.1' author: 'George Zahariev ' description: 'option parsing and help generation' diff --git a/src/index.ls b/src/index.ls index eb91feb..53c98d8 100644 --- a/src/index.ls +++ b/src/index.ls @@ -1,4 +1,4 @@ -VERSION = '0.9.0' +VERSION = '0.9.1' {id, map, compact, any, group-by, partition, chars, is-it-NaN, keys, Obj, camelize} = require 'prelude-ls' deep-is = require 'deep-is'