From 896874b011ac5123b50531f8206b673abda1f11b Mon Sep 17 00:00:00 2001 From: Rafa Mel Date: Wed, 1 May 2019 08:27:09 +0200 Subject: [PATCH] 0.0.1 --- CHANGELOG.md | 140 +++++++++++++++++++++++++ docs/globals.html | 86 +++++++-------- docs/index.html | 6 +- docs/interfaces/iclioptions.html | 14 +-- docs/interfaces/iconfirmoptions.html | 12 +-- docs/interfaces/iexecoptions.html | 10 +- docs/interfaces/ifsoptions.html | 8 +- docs/interfaces/ifswriteoptions.html | 10 +- docs/interfaces/ilistoptions.html | 8 +- docs/interfaces/imultiexecoptions.html | 14 +-- docs/interfaces/ioftype.html | 4 +- docs/interfaces/ioptions.html | 10 +- docs/interfaces/ipackageoptions.html | 18 ++-- docs/interfaces/iparallel.html | 10 +- docs/interfaces/iparalleloptions.html | 18 ++-- docs/interfaces/iraiseoptions.html | 10 +- docs/interfaces/iscopeoptions.html | 16 +-- docs/interfaces/iscripts.html | 4 +- docs/interfaces/iscriptsarray.html | 4 +- docs/interfaces/iselectoptions.html | 8 +- docs/interfaces/iseries.html | 10 +- package-lock.json | 2 +- package.json | 2 +- 23 files changed, 282 insertions(+), 142 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..46b1f36 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,140 @@ +## 0.0.1 (2019-05-01) + + +### Bug Fixes + +* **bin:** catches errors when getting silent option ([856c793](https://github.com/rafamel/kpo/commit/856c793)) +* **bin:** fixes help usage instructions ([52381ad](https://github.com/rafamel/kpo/commit/52381ad)) +* **commands/list:** fixes list to use core.cwd instead of core.paths ([714835c](https://github.com/rafamel/kpo/commit/714835c)) +* **commands/run:** throws when task is not found ([7906ae7](https://github.com/rafamel/kpo/commit/7906ae7)) +* **core:** ensures options have been loaded when requesting options; makes options part of core ([492c737](https://github.com/rafamel/kpo/commit/492c737)) +* **core/paths:** doesn't throw when root paths retrieval fails and it's not explicitly defined in op ([a7261a4](https://github.com/rafamel/kpo/commit/a7261a4)) +* **core/tasks:** fixes purePath regex -default cannot be an intermediary value ([4fdef72](https://github.com/rafamel/kpo/commit/4fdef72)) +* **core/tasks:** fixes task names formatting on error messages for getFromKpo ([4bf1fba](https://github.com/rafamel/kpo/commit/4bf1fba)) +* **core/tasks:** takes IScripts being an instance of Error into account ([a19b394](https://github.com/rafamel/kpo/commit/a19b394)) +* **deps:** adds missing dependency js-yaml; removes dangling ([a3a8183](https://github.com/rafamel/kpo/commit/a3a8183)) +* **deps:** updates errorish to v0.2.0 ([0c2e4fa](https://github.com/rafamel/kpo/commit/0c2e4fa)) +* **deps:** updates errorish to v0.2.1 ([cc8db44](https://github.com/rafamel/kpo/commit/cc8db44)) +* **deps:** updates errorish to v0.3.0 ([a576f09](https://github.com/rafamel/kpo/commit/a576f09)) +* **exposed:** uses core.cwd() instead of core.paths() to determine cwd ([dd02f9c](https://github.com/rafamel/kpo/commit/dd02f9c)) +* **exposed/fs:** fixes copy, destination existence should be recursively evaluated, hence handled by ([6e709b8](https://github.com/rafamel/kpo/commit/6e709b8)) +* **exposed/fs:** fixes relative paths ([0513950](https://github.com/rafamel/kpo/commit/0513950)) +* **exposed/line:** fixes tag typings ([9f33f15](https://github.com/rafamel/kpo/commit/9f33f15)) +* **exposed/tags:** fixes silent ([f0ac3ea](https://github.com/rafamel/kpo/commit/f0ac3ea)) +* **ore/tasks:** fixes error message at getFromKpo ([b3d9d43](https://github.com/rafamel/kpo/commit/b3d9d43)) +* **public/exec:** fixes parallel args ([7c2b0ea](https://github.com/rafamel/kpo/commit/7c2b0ea)) +* **public/exec:** fixes series.fn types ([5b72565](https://github.com/rafamel/kpo/commit/5b72565)) +* **public/fs:** fixes rw fs.ensureDir call ([9fad602](https://github.com/rafamel/kpo/commit/9fad602)) +* **state:** fixes state merging ([c146b7b](https://github.com/rafamel/kpo/commit/c146b7b)) +* **state/paths:** converts root directory path to absolute, if needed ([aad9f6e](https://github.com/rafamel/kpo/commit/aad9f6e)) +* **state/paths:** fixes directory normalization and equality evaluation ([2f5fc9b](https://github.com/rafamel/kpo/commit/2f5fc9b)) +* **state/paths:** get paths root scope recursively from directory ([05c6d31](https://github.com/rafamel/kpo/commit/05c6d31)) +* **utils/as-tag:** only considers arguments as coming from a template literal if their number matche ([c494a08](https://github.com/rafamel/kpo/commit/c494a08)) +* uses WrappedError constructor when an error overwrite is intended ([f72b5a7](https://github.com/rafamel/kpo/commit/f72b5a7)) +* **utils/errors:** fixes wrap configuration to always overwrite message ([dc341f4](https://github.com/rafamel/kpo/commit/dc341f4)) +* **utils/file:** fixes exists to return void as per typings ([6776e59](https://github.com/rafamel/kpo/commit/6776e59)) + + +### Features + +* **bin:** adds cmd ([bb50bf9](https://github.com/rafamel/kpo/commit/bb50bf9)) +* **bin:** adds kpo bin and main ([eb0774b](https://github.com/rafamel/kpo/commit/eb0774b)) +* **bin:** adds parallel ([1c4098e](https://github.com/rafamel/kpo/commit/1c4098e)) +* **bin:** adds raise ([583c6ad](https://github.com/rafamel/kpo/commit/583c6ad)) +* **bin:** adds scopes logic ([4d9f822](https://github.com/rafamel/kpo/commit/4d9f822)) +* **bin:** adds series ([d38be22](https://github.com/rafamel/kpo/commit/d38be22)) +* **bin:** adds stream ([a402da5](https://github.com/rafamel/kpo/commit/a402da5)) +* **bin:** ensures param is an Error before logging ([5985ff9](https://github.com/rafamel/kpo/commit/5985ff9)) +* **bin:** improves parallel and series help prompt ([dc38d92](https://github.com/rafamel/kpo/commit/dc38d92)) +* **bin:** logs full command to be run w/ resolved scopes ([4fc97bc](https://github.com/rafamel/kpo/commit/4fc97bc)) +* **bin:** removes --node argument ([cc072b9](https://github.com/rafamel/kpo/commit/cc072b9)) +* **bin:** uses commands/run ([b31e3a7](https://github.com/rafamel/kpo/commit/b31e3a7)) +* **bin, commands:** adds list ([1a6bd2a](https://github.com/rafamel/kpo/commit/1a6bd2a)) +* **bin/kpo:** exists w/ code 1 only if not silent ([610420e](https://github.com/rafamel/kpo/commit/610420e)) +* **bin/list, commands/list:** lists scopes ([14306a3](https://github.com/rafamel/kpo/commit/14306a3)) +* **bin/main:** updates base state w/ cli options ([2e49b5e](https://github.com/rafamel/kpo/commit/2e49b5e)) +* **commands:** adds run ([86d40b5](https://github.com/rafamel/kpo/commit/86d40b5)) +* **commands/run:** gets default key for task if it exists ([2787459](https://github.com/rafamel/kpo/commit/2787459)) +* **core:** adds children to core entry ([95bda68](https://github.com/rafamel/kpo/commit/95bda68)) +* **core:** adds cwd option for IScopeOptions; improves type definitions for package, cli, and core ([63766bc](https://github.com/rafamel/kpo/commit/63766bc)) +* **core:** adds run ([7ca5479](https://github.com/rafamel/kpo/commit/7ca5479)) +* **core:** allows exec to take cwd and env options ([757559c](https://github.com/rafamel/kpo/commit/757559c)) +* **core:** allows options to be defined at kpo package.json key ([6297145](https://github.com/rafamel/kpo/commit/6297145)) +* **core:** allows relative paths as cwd on exec ([a294f8b](https://github.com/rafamel/kpo/commit/a294f8b)) +* **core/load:** gets scripts key and sets options from options key from kpo scripts file if not a j ([5c54850](https://github.com/rafamel/kpo/commit/5c54850)) +* **core/options:** adds forceUpdate ([1dd5648](https://github.com/rafamel/kpo/commit/1dd5648)) +* **core/options:** allows directory to also be defined at IScopeOptions ([8b0f221](https://github.com/rafamel/kpo/commit/8b0f221)) +* **core/options:** gives priority to cli options ([c9a2b5b](https://github.com/rafamel/kpo/commit/c9a2b5b)) +* **core/options:** uses object hash to identify options ([fcd9122](https://github.com/rafamel/kpo/commit/fcd9122)) +* **core/scope:** recurses up to [@root](https://github.com/root) looking for children scopes ([c3640b0](https://github.com/rafamel/kpo/commit/c3640b0)) +* **core/tasks:** adds tasks to core ([de93899](https://github.com/rafamel/kpo/commit/de93899)) +* **errors:** adds CustomError and WrappedError ([06e7010](https://github.com/rafamel/kpo/commit/06e7010)) +* **exposed:** adds confirm prompt ([76f99e5](https://github.com/rafamel/kpo/commit/76f99e5)) +* **exposed:** adds exposed w/ options ([a65f650](https://github.com/rafamel/kpo/commit/a65f650)) +* **exposed:** adds parallel ([9a735f6](https://github.com/rafamel/kpo/commit/9a735f6)) +* **exposed:** adds series ([dcdb7c7](https://github.com/rafamel/kpo/commit/dcdb7c7)) +* **exposed:** adds silent ([312c676](https://github.com/rafamel/kpo/commit/312c676)) +* **exposed:** adds trim ([164e7eb](https://github.com/rafamel/kpo/commit/164e7eb)) +* **exposed:** replaces trim w/ line -adds line ([7d3baab](https://github.com/rafamel/kpo/commit/7d3baab)) +* **exposed:** wraps all exposed fns errors as WrappedError, so their stacktrace doesn't get logged ([ec911e3](https://github.com/rafamel/kpo/commit/ec911e3)) +* **exposed/exec:** adds series.env and parallel.env ([063fcba](https://github.com/rafamel/kpo/commit/063fcba)) +* **exposed/exists:** adds exists ([758ad8d](https://github.com/rafamel/kpo/commit/758ad8d)) +* **exposed/file:** adds json ([6e7efb2](https://github.com/rafamel/kpo/commit/6e7efb2)) +* **exposed/file:** adds remove ([75d114f](https://github.com/rafamel/kpo/commit/75d114f)) +* **exposed/fs:** adds copy ([9a5c313](https://github.com/rafamel/kpo/commit/9a5c313)) +* **exposed/fs:** adds move ([0acf5a5](https://github.com/rafamel/kpo/commit/0acf5a5)) +* **exposed/fs:** adds write ([8706280](https://github.com/rafamel/kpo/commit/8706280)) +* **exposed/fs:** improves logger messages ([98d3474](https://github.com/rafamel/kpo/commit/98d3474)) +* **exposed/fs:** moves file to fs; improves functions implementation and typings; adds rw ([3a235cd](https://github.com/rafamel/kpo/commit/3a235cd)) +* **exposed/fs, exposed/tags:** adds mkdir; uses mkdir on ensure ([6109bf8](https://github.com/rafamel/kpo/commit/6109bf8)) +* **exposed/prompts:** adds select prompt ([71cdfa7](https://github.com/rafamel/kpo/commit/71cdfa7)) +* **exposed/prompts:** confirm shows timeout if passed ([316da0e](https://github.com/rafamel/kpo/commit/316da0e)) +* **exposed/tags:** adds ensure ([28adb76](https://github.com/rafamel/kpo/commit/28adb76)) +* **exposed/tags:** adds exists ([2808b7c](https://github.com/rafamel/kpo/commit/2808b7c)) +* **exposed/tags:** adds log ([c9b3a1c](https://github.com/rafamel/kpo/commit/c9b3a1c)) +* **exposed/tags:** adds rm ([aba9763](https://github.com/rafamel/kpo/commit/aba9763)) +* **options:** implements and exports options from entry point ([3f0ae47](https://github.com/rafamel/kpo/commit/3f0ae47)) +* **parse:** adds getFile ([4da7cd9](https://github.com/rafamel/kpo/commit/4da7cd9)) +* **parse:** adds readFile and IScripts type ([1cd195c](https://github.com/rafamel/kpo/commit/1cd195c)) +* **parse/load:** returns package.json and redesigns getFile ([23480a7](https://github.com/rafamel/kpo/commit/23480a7)) +* **public/exec:** adds stream ([76da0d0](https://github.com/rafamel/kpo/commit/76da0d0)) +* **public/kpo:** adds raise ([4408633](https://github.com/rafamel/kpo/commit/4408633)) +* **public/kpo:** takes scripts to replace into account on raise ([33e0e83](https://github.com/rafamel/kpo/commit/33e0e83)) +* **state:** adds paths ([96fd89b](https://github.com/rafamel/kpo/commit/96fd89b)) +* **state:** adds scope ([c691501](https://github.com/rafamel/kpo/commit/c691501)) +* **state:** adds state, moves parse/load ([aba1998](https://github.com/rafamel/kpo/commit/aba1998)) +* **state:** allows root scope to be set as null ([87e80b9](https://github.com/rafamel/kpo/commit/87e80b9)) +* **state:** get unsafely retrieves values for keys ([cb6a334](https://github.com/rafamel/kpo/commit/cb6a334)) +* **state:** separates load into paths and load; gets root paths ([ea2b809](https://github.com/rafamel/kpo/commit/ea2b809)) +* **state:** sets logger level on state merging ([7e7e190](https://github.com/rafamel/kpo/commit/7e7e190)) +* **state/load:** sets cwd as default directory ([f673347](https://github.com/rafamel/kpo/commit/f673347)) +* **state/paths:** retrieves bin paths recursively for current and root scopes ([a92997e](https://github.com/rafamel/kpo/commit/a92997e)) +* **state/scope:** adds getChildren ([9fb9ddf](https://github.com/rafamel/kpo/commit/9fb9ddf)) +* **types:** allows circular renference as Array and falsy values for TScript ([657ad24](https://github.com/rafamel/kpo/commit/657ad24)) +* **types:** improves TScript typings ([57bfc0c](https://github.com/rafamel/kpo/commit/57bfc0c)) +* adds optional name field to IChild ([6596a1e](https://github.com/rafamel/kpo/commit/6596a1e)) +* **types:** separates IOptions into IBaseOptions and IScopeOptions; ensures IBaseOptions are preser ([78d5fd7](https://github.com/rafamel/kpo/commit/78d5fd7)) +* **utils:** adds asTag ([87eae18](https://github.com/rafamel/kpo/commit/87eae18)) +* improves logged messages ([d1c7751](https://github.com/rafamel/kpo/commit/d1c7751)) +* **utils:** adds confirm ([fc40be3](https://github.com/rafamel/kpo/commit/fc40be3)) +* **utils:** adds ensure ([91d12ab](https://github.com/rafamel/kpo/commit/91d12ab)) +* **utils:** adds expose ([a3ba5ca](https://github.com/rafamel/kpo/commit/a3ba5ca)) +* **utils:** adds file utils ([c8b5c75](https://github.com/rafamel/kpo/commit/c8b5c75)) +* **utils:** adds memoize ([24212ed](https://github.com/rafamel/kpo/commit/24212ed)) +* **utils:** adds open ([4ceb22b](https://github.com/rafamel/kpo/commit/4ceb22b)) +* **utils:** substitutes memoize w/ cache; cache now takes a getId function to identify state ([d2cc870](https://github.com/rafamel/kpo/commit/d2cc870)) +* **utils/errors:** adds custom name getter for error classes ([3a5191b](https://github.com/rafamel/kpo/commit/3a5191b)) +* **utils/exec:** adds exec ([74e1ed2](https://github.com/rafamel/kpo/commit/74e1ed2)) +* **utils/exec:** kills dangling child processes on main process exit ([f955538](https://github.com/rafamel/kpo/commit/f955538)) +* **utils/exec:** passes environment variables w/ state envs and paths by default; returns a promise ([6ed1eef](https://github.com/rafamel/kpo/commit/6ed1eef)) +* passes arguments to tasks, both for commands and functions ([18042df](https://github.com/rafamel/kpo/commit/18042df)) +* uses OpenError to log full errors as long as logger is not silent when it ocurrs on task funct ([282fdfc](https://github.com/rafamel/kpo/commit/282fdfc)) +* **utils/exec:** sets options as optional ([0f68e72](https://github.com/rafamel/kpo/commit/0f68e72)) +* **utils/exec:** spawns w/ project directory as cwd ([ab692bc](https://github.com/rafamel/kpo/commit/ab692bc)) +* **utils/exec, core/exec:** adds forking capability to exec ([5e4aa6a](https://github.com/rafamel/kpo/commit/5e4aa6a)) +* **utils/file:** adds absolute ([69532e0](https://github.com/rafamel/kpo/commit/69532e0)) +* **utils/file:** adds load ([e9f823f](https://github.com/rafamel/kpo/commit/e9f823f)) +* **utils/logger:** adds logger ([78676b4](https://github.com/rafamel/kpo/commit/78676b4)) + + + diff --git a/docs/globals.html b/docs/globals.html index 3c450d6..47fa5a9 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -3,7 +3,7 @@ - kpo 0.0.0 + kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -54,7 +54,7 @@ Globals -

    kpo 0.0.0

    +

    kpo 0.0.1

    @@ -143,7 +143,7 @@

    TChildrenDefinition

    TChildrenDefinition: IOfType<string> | string[]
    @@ -162,7 +162,7 @@

    TCopyFilterFn

    TCopyFilterFn: function | function
    @@ -172,7 +172,7 @@

    TCoreOptions

    @@ -182,7 +182,7 @@

    TLogger

    TLogger: LogLevelDesc
    @@ -197,7 +197,7 @@

    TScript

    TScript: undefined | null | false | string | Error | TScriptFn | IScriptsArray
    @@ -232,7 +232,7 @@

    TScriptFn

    TScriptFn: function
    @@ -273,7 +273,7 @@

    TStreamOptions

    TStreamOptions: IMultiExecOptions & object
    @@ -291,7 +291,7 @@

    Const parallel

    parallel: IParallel = create()
    @@ -312,7 +312,7 @@

    Const series

    series: ISeries = create()
    @@ -341,7 +341,7 @@

    confirm

  • @@ -377,7 +377,7 @@

    Returns Promise
    @@ -420,7 +420,7 @@

    copy

  • @@ -459,7 +459,7 @@

    Returns Promise
    @@ -511,7 +511,7 @@

    ensure

  • @@ -544,7 +544,7 @@

    Returns Promise
    @@ -590,7 +590,7 @@

    exists

  • @@ -623,7 +623,7 @@

    Returns Promise
    @@ -668,7 +668,7 @@

    json

  • @@ -740,7 +740,7 @@

    line

  • @@ -763,7 +763,7 @@

    Returns string
    @@ -798,7 +798,7 @@

    list

  • @@ -841,7 +841,7 @@

    log

  • @@ -874,7 +874,7 @@

    Returns void
    @@ -919,7 +919,7 @@

    mkdir

  • @@ -970,7 +970,7 @@

    move

  • @@ -1018,7 +1018,7 @@

    options

  • @@ -1046,7 +1046,7 @@

    raise

  • @@ -1088,7 +1088,7 @@

    remove

  • @@ -1140,7 +1140,7 @@

    rm

  • @@ -1173,7 +1173,7 @@

    Returns Promise
    @@ -1218,7 +1218,7 @@

    run

  • @@ -1266,7 +1266,7 @@

    rw

  • @@ -1338,7 +1338,7 @@

    select

  • @@ -1374,7 +1374,7 @@

    Returns Promise
    @@ -1417,7 +1417,7 @@

    silent

  • @@ -1456,7 +1456,7 @@

    Returns Promise
    @@ -1507,7 +1507,7 @@

    stream

  • @@ -1560,7 +1560,7 @@

    write

  • @@ -1596,7 +1596,7 @@

    Returns Promise
    @@ -1632,7 +1632,7 @@

    Returns Promise
    diff --git a/docs/index.html b/docs/index.html index 3294ec6..70087a1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3,7 +3,7 @@ - kpo 0.0.0 + kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -54,7 +54,7 @@ Globals

  • -

    kpo 0.0.0

    +

    kpo 0.0.1

    diff --git a/docs/interfaces/iclioptions.html b/docs/interfaces/iclioptions.html index d194b54..81ddd13 100644 --- a/docs/interfaces/iclioptions.html +++ b/docs/interfaces/iclioptions.html @@ -3,7 +3,7 @@ - ICliOptions | kpo 0.0.0 + ICliOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -109,7 +109,7 @@

    Optional directory

    directory: string | null
    @@ -125,7 +125,7 @@

    Optional env

    @@ -140,7 +140,7 @@

    Optional file

    file: string | null
    @@ -156,7 +156,7 @@

    Optional log

    @@ -172,7 +172,7 @@

    Optional silent

    diff --git a/docs/interfaces/iconfirmoptions.html b/docs/interfaces/iconfirmoptions.html index 3221bb3..daaf9db 100644 --- a/docs/interfaces/iconfirmoptions.html +++ b/docs/interfaces/iconfirmoptions.html @@ -3,7 +3,7 @@ - IConfirmOptions | kpo 0.0.0 + IConfirmOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -103,7 +103,7 @@

    Optional initial

    initial: undefined | false | true
    @@ -118,7 +118,7 @@

    Optional no

    @@ -133,7 +133,7 @@

    Optional timeout

    timeout: undefined | number
    @@ -148,7 +148,7 @@

    Optional yes

    yes: TScript
    diff --git a/docs/interfaces/iexecoptions.html b/docs/interfaces/iexecoptions.html index e2d1b54..f085e93 100644 --- a/docs/interfaces/iexecoptions.html +++ b/docs/interfaces/iexecoptions.html @@ -3,7 +3,7 @@ - IExecOptions | kpo 0.0.0 + IExecOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -107,7 +107,7 @@

    Optional cwd

    cwd: undefined | string
    @@ -122,7 +122,7 @@

    Optional env

    env: IOfType<string>
    @@ -137,7 +137,7 @@

    Optional stdio

    stdio: "pipe" | "ignore" | "inherit"
    diff --git a/docs/interfaces/ifsoptions.html b/docs/interfaces/ifsoptions.html index de60195..d8c210f 100644 --- a/docs/interfaces/ifsoptions.html +++ b/docs/interfaces/ifsoptions.html @@ -3,7 +3,7 @@ - IFsOptions | kpo 0.0.0 + IFsOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -106,7 +106,7 @@

    Optional confirm

    confirm: undefined | false | true
    @@ -121,7 +121,7 @@

    Optional fail

    fail: undefined | false | true
    diff --git a/docs/interfaces/ifswriteoptions.html b/docs/interfaces/ifswriteoptions.html index f7585b5..c061123 100644 --- a/docs/interfaces/ifswriteoptions.html +++ b/docs/interfaces/ifswriteoptions.html @@ -3,7 +3,7 @@ - IFsWriteOptions | kpo 0.0.0 + IFsWriteOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -108,7 +108,7 @@

    Optional confirm

    @@ -124,7 +124,7 @@

    Optional fail

    @@ -139,7 +139,7 @@

    Optional overwrite

    overwrite: undefined | false | true
    diff --git a/docs/interfaces/ilistoptions.html b/docs/interfaces/ilistoptions.html index 32bb43e..a6f50b9 100644 --- a/docs/interfaces/ilistoptions.html +++ b/docs/interfaces/ilistoptions.html @@ -3,7 +3,7 @@ - IListOptions | kpo 0.0.0 + IListOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -94,7 +94,7 @@

    Optional all

    all: undefined | false | true
    @@ -109,7 +109,7 @@

    Optional scopes

    scopes: undefined | false | true
    diff --git a/docs/interfaces/imultiexecoptions.html b/docs/interfaces/imultiexecoptions.html index 88172c4..8753bb8 100644 --- a/docs/interfaces/imultiexecoptions.html +++ b/docs/interfaces/imultiexecoptions.html @@ -3,7 +3,7 @@ - IMultiExecOptions | kpo 0.0.0 + IMultiExecOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -115,7 +115,7 @@

    Optional cwd

    @@ -131,7 +131,7 @@

    Optional env

    @@ -146,7 +146,7 @@

    Optional force

    force: undefined | false | true
    @@ -161,7 +161,7 @@

    Optional silent

    silent: undefined | false | true
    @@ -177,7 +177,7 @@

    Optional stdio

    diff --git a/docs/interfaces/ioftype.html b/docs/interfaces/ioftype.html index 0f866a3..44442f8 100644 --- a/docs/interfaces/ioftype.html +++ b/docs/interfaces/ioftype.html @@ -3,7 +3,7 @@ - IOfType | kpo 0.0.0 + IOfType | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    diff --git a/docs/interfaces/ioptions.html b/docs/interfaces/ioptions.html index 078db6a..bdc6478 100644 --- a/docs/interfaces/ioptions.html +++ b/docs/interfaces/ioptions.html @@ -3,7 +3,7 @@ - IOptions | kpo 0.0.0 + IOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -103,7 +103,7 @@

    Optional env

    env: IOfType<string>
    @@ -118,7 +118,7 @@

    Optional log

    log: TLogger
    @@ -133,7 +133,7 @@

    Optional silent

    silent: undefined | false | true
    diff --git a/docs/interfaces/ipackageoptions.html b/docs/interfaces/ipackageoptions.html index 4fdecd7..3f884dc 100644 --- a/docs/interfaces/ipackageoptions.html +++ b/docs/interfaces/ipackageoptions.html @@ -3,7 +3,7 @@ - IPackageOptions | kpo 0.0.0 + IPackageOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -112,7 +112,7 @@

    Optional children

    @@ -128,7 +128,7 @@

    Optional cwd

    @@ -151,7 +151,7 @@

    Optional env

    @@ -166,7 +166,7 @@

    Optional file

    file: string | null
    @@ -182,7 +182,7 @@

    Optional log

    @@ -198,7 +198,7 @@

    Optional root

    @@ -214,7 +214,7 @@

    Optional silent

    diff --git a/docs/interfaces/iparallel.html b/docs/interfaces/iparallel.html index 07681fa..9f0a998 100644 --- a/docs/interfaces/iparallel.html +++ b/docs/interfaces/iparallel.html @@ -3,7 +3,7 @@ - IParallel | kpo 0.0.0 + IParallel | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -88,7 +88,7 @@

    Callable

  • @@ -153,7 +153,7 @@

    env

  • Parameters

    @@ -197,7 +197,7 @@

    fn

  • Parameters

    diff --git a/docs/interfaces/iparalleloptions.html b/docs/interfaces/iparalleloptions.html index 42e482f..a23e781 100644 --- a/docs/interfaces/iparalleloptions.html +++ b/docs/interfaces/iparalleloptions.html @@ -3,7 +3,7 @@ - IParallelOptions | kpo 0.0.0 + IParallelOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -111,7 +111,7 @@

    Optional colors

    colors: string[]
    @@ -122,7 +122,7 @@

    Optional cwd

    @@ -138,7 +138,7 @@

    Optional env

    @@ -154,7 +154,7 @@

    Optional force

    @@ -169,7 +169,7 @@

    Optional names

    names: string[]
    @@ -180,7 +180,7 @@

    Optional silent

    @@ -196,7 +196,7 @@

    Optional stdio

    diff --git a/docs/interfaces/iraiseoptions.html b/docs/interfaces/iraiseoptions.html index 7b8970f..e060e06 100644 --- a/docs/interfaces/iraiseoptions.html +++ b/docs/interfaces/iraiseoptions.html @@ -3,7 +3,7 @@ - IRaiseOptions | kpo 0.0.0 + IRaiseOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -95,7 +95,7 @@

    Optional confirm

    confirm: undefined | false | true
    @@ -110,7 +110,7 @@

    Optional dry

    dry: undefined | false | true
    @@ -125,7 +125,7 @@

    Optional fail

    fail: undefined | false | true
    diff --git a/docs/interfaces/iscopeoptions.html b/docs/interfaces/iscopeoptions.html index 4075a1b..96d60b2 100644 --- a/docs/interfaces/iscopeoptions.html +++ b/docs/interfaces/iscopeoptions.html @@ -3,7 +3,7 @@ - IScopeOptions | kpo 0.0.0 + IScopeOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -115,7 +115,7 @@

    Optional children

    @@ -130,7 +130,7 @@

    Optional cwd

    cwd: undefined | string
    @@ -153,7 +153,7 @@

    Optional env

    @@ -169,7 +169,7 @@

    Optional log

    @@ -184,7 +184,7 @@

    Optional root

    root: string | null
    @@ -200,7 +200,7 @@

    Optional silent

    diff --git a/docs/interfaces/iscripts.html b/docs/interfaces/iscripts.html index 37a6546..7b4dcd4 100644 --- a/docs/interfaces/iscripts.html +++ b/docs/interfaces/iscripts.html @@ -3,7 +3,7 @@ - IScripts | kpo 0.0.0 + IScripts | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    diff --git a/docs/interfaces/iscriptsarray.html b/docs/interfaces/iscriptsarray.html index dfde349..c163610 100644 --- a/docs/interfaces/iscriptsarray.html +++ b/docs/interfaces/iscriptsarray.html @@ -3,7 +3,7 @@ - IScriptsArray | kpo 0.0.0 + IScriptsArray | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    diff --git a/docs/interfaces/iselectoptions.html b/docs/interfaces/iselectoptions.html index f08e501..6b7e319 100644 --- a/docs/interfaces/iselectoptions.html +++ b/docs/interfaces/iselectoptions.html @@ -3,7 +3,7 @@ - ISelectOptions | kpo 0.0.0 + ISelectOptions | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -101,7 +101,7 @@

    Optional initial

    initial: undefined | string
    @@ -116,7 +116,7 @@

    values

    values: IOfType<TScript>
    diff --git a/docs/interfaces/iseries.html b/docs/interfaces/iseries.html index 3c4b786..0b5cd41 100644 --- a/docs/interfaces/iseries.html +++ b/docs/interfaces/iseries.html @@ -3,7 +3,7 @@ - ISeries | kpo 0.0.0 + ISeries | kpo 0.0.1 @@ -22,7 +22,7 @@
  • Preparing search index...
  • The search index is not available
  • - kpo 0.0.0 + kpo 0.0.1
    @@ -88,7 +88,7 @@

    Callable

  • @@ -153,7 +153,7 @@

    env

  • Parameters

    @@ -197,7 +197,7 @@

    fn

  • Parameters

    diff --git a/package-lock.json b/package-lock.json index 8ccfd21..f39bfc8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "kpo", - "version": "0.0.0", + "version": "0.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 40c4c4a..149c728 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kpo", - "version": "0.0.0", + "version": "0.0.1", "author": "Rafa Mel", "description": "A task runner that goes where npm scripts won't, for the true capo", "keywords": [