@entelligentsia/forgecli 0.6.6 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +88 -0
- package/README.md +28 -1
- package/dist/bin/forge.js +20 -0
- package/dist/bin/forge.js.map +1 -1
- package/dist/extensions/forgecli/approve.d.ts +24 -0
- package/dist/extensions/forgecli/approve.js +202 -0
- package/dist/extensions/forgecli/approve.js.map +1 -0
- package/dist/extensions/forgecli/audience-gate.d.ts +4 -0
- package/dist/extensions/forgecli/audience-gate.js +8 -5
- package/dist/extensions/forgecli/audience-gate.js.map +1 -1
- package/dist/extensions/forgecli/collate.d.ts +24 -0
- package/dist/extensions/forgecli/collate.js +199 -0
- package/dist/extensions/forgecli/collate.js.map +1 -0
- package/dist/extensions/forgecli/commit.d.ts +24 -0
- package/dist/extensions/forgecli/commit.js +202 -0
- package/dist/extensions/forgecli/commit.js.map +1 -0
- package/dist/extensions/forgecli/fix-bug.d.ts +75 -0
- package/dist/extensions/forgecli/fix-bug.js +1133 -0
- package/dist/extensions/forgecli/fix-bug.js.map +1 -0
- package/dist/extensions/forgecli/forge-commands.js +7 -0
- package/dist/extensions/forgecli/forge-commands.js.map +1 -1
- package/dist/extensions/forgecli/forge-init.js +16 -8
- package/dist/extensions/forgecli/forge-init.js.map +1 -1
- package/dist/extensions/forgecli/forge-subagent.d.ts +29 -0
- package/dist/extensions/forgecli/forge-subagent.js +14 -1
- package/dist/extensions/forgecli/forge-subagent.js.map +1 -1
- package/dist/extensions/forgecli/hook-dispatcher.d.ts +53 -1
- package/dist/extensions/forgecli/hook-dispatcher.js +47 -1
- package/dist/extensions/forgecli/hook-dispatcher.js.map +1 -1
- package/dist/extensions/forgecli/hooks/post-init-hook.d.ts +15 -0
- package/dist/extensions/forgecli/hooks/post-init-hook.js +127 -0
- package/dist/extensions/forgecli/hooks/post-init-hook.js.map +1 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.d.ts +37 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.js +166 -0
- package/dist/extensions/forgecli/hooks/post-sprint-hook.js.map +1 -0
- package/dist/extensions/forgecli/index.js +47 -0
- package/dist/extensions/forgecli/index.js.map +1 -1
- package/dist/extensions/forgecli/review-code.d.ts +24 -0
- package/dist/extensions/forgecli/review-code.js +202 -0
- package/dist/extensions/forgecli/review-code.js.map +1 -0
- package/dist/extensions/forgecli/review-plan.d.ts +24 -0
- package/dist/extensions/forgecli/review-plan.js +203 -0
- package/dist/extensions/forgecli/review-plan.js.map +1 -0
- package/dist/extensions/forgecli/run-sprint.d.ts +18 -0
- package/dist/extensions/forgecli/run-sprint.js +33 -1
- package/dist/extensions/forgecli/run-sprint.js.map +1 -1
- package/dist/extensions/forgecli/run-task.d.ts +21 -2
- package/dist/extensions/forgecli/run-task.js +33 -9
- package/dist/extensions/forgecli/run-task.js.map +1 -1
- package/dist/extensions/forgecli/session-registry.d.ts +10 -0
- package/dist/extensions/forgecli/session-registry.js +9 -0
- package/dist/extensions/forgecli/session-registry.js.map +1 -1
- package/dist/extensions/forgecli/validate.d.ts +24 -0
- package/dist/extensions/forgecli/validate.js +202 -0
- package/dist/extensions/forgecli/validate.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/engine.d.ts +23 -0
- package/dist/extensions/forgecli/wf-engine/engine.js +384 -0
- package/dist/extensions/forgecli/wf-engine/engine.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.js +29 -0
- package/dist/extensions/forgecli/wf-engine/event-parser.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.js +17 -0
- package/dist/extensions/forgecli/wf-engine/id-gen.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/loader.d.ts +2 -0
- package/dist/extensions/forgecli/wf-engine/loader.js +100 -0
- package/dist/extensions/forgecli/wf-engine/loader.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/predicate.d.ts +7 -0
- package/dist/extensions/forgecli/wf-engine/predicate.js +36 -0
- package/dist/extensions/forgecli/wf-engine/predicate.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.d.ts +15 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.js +23 -0
- package/dist/extensions/forgecli/wf-engine/prompt-compiler.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/register.d.ts +9 -0
- package/dist/extensions/forgecli/wf-engine/register.js +59 -0
- package/dist/extensions/forgecli/wf-engine/register.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.d.ts +6 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.js +42 -0
- package/dist/extensions/forgecli/wf-engine/remit-check.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/state-store.d.ts +13 -0
- package/dist/extensions/forgecli/wf-engine/state-store.js +43 -0
- package/dist/extensions/forgecli/wf-engine/state-store.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/types.d.ts +66 -0
- package/dist/extensions/forgecli/wf-engine/types.js +2 -0
- package/dist/extensions/forgecli/wf-engine/types.js.map +1 -0
- package/dist/extensions/forgecli/wf-engine/worker.d.ts +11 -0
- package/dist/extensions/forgecli/wf-engine/worker.js +50 -0
- package/dist/extensions/forgecli/wf-engine/worker.js.map +1 -0
- package/dist/forge-payload/.base-pack/workflows/_fragments/context-injection.md +10 -4
- package/dist/forge-payload/.base-pack/workflows/fix_bug.md +12 -0
- package/dist/forge-payload/.schemas/bug.schema.json +4 -2
- package/dist/forge-payload/.schemas/event.schema.json +22 -3
- package/dist/forge-payload/commands/add-pipeline.md +342 -0
- package/dist/forge-payload/commands/add-task.md +269 -0
- package/dist/forge-payload/commands/ask.md +43 -0
- package/dist/forge-payload/commands/calibrate.md +356 -0
- package/dist/forge-payload/commands/config.md +202 -0
- package/dist/forge-payload/commands/enhance.md +38 -0
- package/dist/forge-payload/commands/health.md +225 -0
- package/dist/forge-payload/commands/init.md +165 -0
- package/dist/forge-payload/commands/materialize.md +119 -0
- package/dist/forge-payload/commands/migrate.md +160 -0
- package/dist/forge-payload/commands/quiz-agent.md +38 -0
- package/dist/forge-payload/commands/regenerate.md +673 -0
- package/dist/forge-payload/commands/remove.md +174 -0
- package/dist/forge-payload/commands/report-bug.md +191 -0
- package/dist/forge-payload/commands/store-query.md +73 -0
- package/dist/forge-payload/commands/store-repair.md +187 -0
- package/dist/forge-payload/commands/update-tools.md +56 -0
- package/dist/forge-payload/commands/update.md +1376 -0
- package/dist/forge-payload/tools/preflight-gate.cjs +2 -1
- package/dist/forge-payload/tools/read-verdict.cjs +41 -8
- package/dist/forge-payload/tools/store-cli.cjs +4 -3
- package/node_modules/argparse/CHANGELOG.md +216 -0
- package/node_modules/argparse/LICENSE +254 -0
- package/node_modules/argparse/README.md +84 -0
- package/node_modules/argparse/argparse.js +3707 -0
- package/node_modules/argparse/lib/sub.js +67 -0
- package/node_modules/argparse/lib/textwrap.js +440 -0
- package/node_modules/argparse/package.json +31 -0
- package/node_modules/cliui/CHANGELOG.md +121 -0
- package/node_modules/color-convert/CHANGELOG.md +54 -0
- package/node_modules/esprima/ChangeLog +235 -0
- package/node_modules/js-yaml/LICENSE +21 -0
- package/node_modules/js-yaml/README.md +247 -0
- package/node_modules/js-yaml/bin/js-yaml.js +126 -0
- package/node_modules/js-yaml/dist/js-yaml.js +3880 -0
- package/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- package/node_modules/js-yaml/dist/js-yaml.mjs +3856 -0
- package/node_modules/js-yaml/index.js +47 -0
- package/node_modules/js-yaml/lib/common.js +59 -0
- package/node_modules/js-yaml/lib/dumper.js +965 -0
- package/node_modules/js-yaml/lib/exception.js +55 -0
- package/node_modules/js-yaml/lib/loader.js +1733 -0
- package/node_modules/js-yaml/lib/schema/core.js +11 -0
- package/node_modules/js-yaml/lib/schema/default.js +22 -0
- package/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- package/node_modules/js-yaml/lib/schema/json.js +19 -0
- package/node_modules/js-yaml/lib/schema.js +121 -0
- package/node_modules/js-yaml/lib/snippet.js +101 -0
- package/node_modules/js-yaml/lib/type/binary.js +125 -0
- package/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/node_modules/js-yaml/lib/type/float.js +97 -0
- package/node_modules/js-yaml/lib/type/int.js +156 -0
- package/node_modules/js-yaml/lib/type/map.js +8 -0
- package/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/node_modules/js-yaml/lib/type/null.js +35 -0
- package/node_modules/js-yaml/lib/type/omap.js +44 -0
- package/node_modules/js-yaml/lib/type/pairs.js +53 -0
- package/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/node_modules/js-yaml/lib/type/set.js +29 -0
- package/node_modules/js-yaml/lib/type/str.js +8 -0
- package/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/node_modules/js-yaml/lib/type.js +66 -0
- package/node_modules/js-yaml/package.json +66 -0
- package/node_modules/mz/HISTORY.md +66 -0
- package/node_modules/proper-lockfile/CHANGELOG.md +108 -0
- package/node_modules/source-map/CHANGELOG.md +301 -0
- package/node_modules/thenify/History.md +11 -0
- package/node_modules/thenify-all/History.md +11 -0
- package/node_modules/y18n/CHANGELOG.md +100 -0
- package/node_modules/yargs/CHANGELOG.md +88 -0
- package/node_modules/yargs-parser/CHANGELOG.md +263 -0
- package/package.json +6 -2
- package/workflows/lead-qualifier/prompts/digest.md +44 -0
- package/workflows/lead-qualifier/prompts/draft-outreach.md +44 -0
- package/workflows/lead-qualifier/prompts/enrich.md +52 -0
- package/workflows/lead-qualifier/prompts/intake.md +48 -0
- package/workflows/lead-qualifier/prompts/mark-cold.md +38 -0
- package/workflows/lead-qualifier/prompts/score.md +45 -0
- package/workflows/lead-qualifier/workflow.yaml +95 -0
- package/workflows/research-brief/prompts/brief-synthesize.md +43 -0
- package/workflows/research-brief/prompts/intake.md +51 -0
- package/workflows/research-brief/prompts/source-critique.md +38 -0
- package/workflows/research-brief/prompts/source-score.md +38 -0
- package/workflows/research-brief/prompts/source-summarize.md +54 -0
- package/workflows/research-brief/workflow.yaml +66 -0
- package/dist/extensions/forgecli/session-monitor-widget.d.ts +0 -37
- package/dist/extensions/forgecli/session-monitor-widget.js +0 -320
- package/dist/extensions/forgecli/session-monitor-widget.js.map +0 -1
- package/dist/extensions/forgecli/session-monitor.d.ts +0 -2
- package/dist/extensions/forgecli/session-monitor.js +0 -135
- package/dist/extensions/forgecli/session-monitor.js.map +0 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
<a name="4.1.2"></a>
|
|
6
|
+
## [4.1.2](https://github.com/moxystudio/node-proper-lockfile/compare/v4.1.1...v4.1.2) (2021-01-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix node 14 updating graceful-fs ([#102](https://github.com/moxystudio/node-proper-lockfile/issues/102)) ([b0d988e](https://github.com/moxystudio/node-proper-lockfile/commit/b0d988e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
<a name="4.1.1"></a>
|
|
16
|
+
## [4.1.1](https://github.com/moxystudio/node-proper-lockfile/compare/v4.1.0...v4.1.1) (2019-04-03)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* fix mtime precision on some filesystems ([#88](https://github.com/moxystudio/node-proper-lockfile/issues/88)) ([f266158](https://github.com/moxystudio/node-proper-lockfile/commit/f266158)), closes [#82](https://github.com/moxystudio/node-proper-lockfile/issues/82) [#87](https://github.com/moxystudio/node-proper-lockfile/issues/87)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
<a name="4.1.0"></a>
|
|
26
|
+
# [4.1.0](https://github.com/moxystudio/node-proper-lockfile/compare/v4.0.0...v4.1.0) (2019-03-18)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* allow second precision in mtime comparison ([#78](https://github.com/moxystudio/node-proper-lockfile/issues/78)) ([b2816a6](https://github.com/moxystudio/node-proper-lockfile/commit/b2816a6))
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
<a name="4.0.0"></a>
|
|
36
|
+
# [4.0.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.2.0...v4.0.0) (2019-03-12)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* fix typo in error message ([#68](https://github.com/moxystudio/node-proper-lockfile/issues/68)) ([b91cb55](https://github.com/moxystudio/node-proper-lockfile/commit/b91cb55))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* make staleness check more robust ([#74](https://github.com/moxystudio/node-proper-lockfile/issues/74)) ([9cc0973](https://github.com/moxystudio/node-proper-lockfile/commit/9cc0973)), closes [#71](https://github.com/moxystudio/node-proper-lockfile/issues/71) [/github.com/ipfs/js-ipfs-repo/issues/188#issuecomment-468682971](https://github.com//github.com/ipfs/js-ipfs-repo/issues/188/issues/issuecomment-468682971)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### BREAKING CHANGES
|
|
50
|
+
|
|
51
|
+
* We were marking the lock as compromised when system went into sleep or if the event loop was busy taking too long to run the internals timers, Now we keep track of the mtime updated by the current process, and if we lose some cycles in the update process but recover and the mtime is still ours we do not mark the lock as compromised.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
<a name="3.2.0"></a>
|
|
56
|
+
# [3.2.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.1.0...v3.2.0) (2018-11-19)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
### Features
|
|
60
|
+
|
|
61
|
+
* add lock path option ([#66](https://github.com/moxystudio/node-proper-lockfile/issues/66)) ([32f1b8d](https://github.com/moxystudio/node-proper-lockfile/commit/32f1b8d))
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
<a name="3.1.0"></a>
|
|
66
|
+
# [3.1.0](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.2...v3.1.0) (2018-11-15)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
|
|
71
|
+
* **package:** update retry to version 0.12.0 ([#50](https://github.com/moxystudio/node-proper-lockfile/issues/50)) ([d400b98](https://github.com/moxystudio/node-proper-lockfile/commit/d400b98))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Features
|
|
75
|
+
|
|
76
|
+
* add signal exit ([#65](https://github.com/moxystudio/node-proper-lockfile/issues/65)) ([f20bc45](https://github.com/moxystudio/node-proper-lockfile/commit/f20bc45))
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
<a name="3.0.2"></a>
|
|
81
|
+
## [3.0.2](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.1...v3.0.2) (2018-01-30)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<a name="3.0.1"></a>
|
|
86
|
+
## [3.0.1](https://github.com/moxystudio/node-proper-lockfile/compare/v3.0.0...v3.0.1) (2018-01-20)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
* restore ability to use lockfile() directly ([0ef8fbc](https://github.com/moxystudio/node-proper-lockfile/commit/0ef8fbc))
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
<a name="3.0.0"></a>
|
|
96
|
+
# [3.0.0](https://github.com/moxystudio/node-proper-lockfile/compare/v2.0.1...v3.0.0) (2018-01-20)
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
### Chores
|
|
100
|
+
|
|
101
|
+
* update project to latest node lts ([b1d43e5](https://github.com/moxystudio/node-proper-lockfile/commit/b1d43e5))
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### BREAKING CHANGES
|
|
105
|
+
|
|
106
|
+
* remove callback support
|
|
107
|
+
* use of node lts language features such as object spread
|
|
108
|
+
* compromised function in lock() has been moved to an option
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## 0.5.6
|
|
4
|
+
|
|
5
|
+
* Fix for regression when people were using numbers as names in source maps. See
|
|
6
|
+
#236.
|
|
7
|
+
|
|
8
|
+
## 0.5.5
|
|
9
|
+
|
|
10
|
+
* Fix "regression" of unsupported, implementation behavior that half the world
|
|
11
|
+
happens to have come to depend on. See #235.
|
|
12
|
+
|
|
13
|
+
* Fix regression involving function hoisting in SpiderMonkey. See #233.
|
|
14
|
+
|
|
15
|
+
## 0.5.4
|
|
16
|
+
|
|
17
|
+
* Large performance improvements to source-map serialization. See #228 and #229.
|
|
18
|
+
|
|
19
|
+
## 0.5.3
|
|
20
|
+
|
|
21
|
+
* Do not include unnecessary distribution files. See
|
|
22
|
+
commit ef7006f8d1647e0a83fdc60f04f5a7ca54886f86.
|
|
23
|
+
|
|
24
|
+
## 0.5.2
|
|
25
|
+
|
|
26
|
+
* Include browser distributions of the library in package.json's `files`. See
|
|
27
|
+
issue #212.
|
|
28
|
+
|
|
29
|
+
## 0.5.1
|
|
30
|
+
|
|
31
|
+
* Fix latent bugs in IndexedSourceMapConsumer.prototype._parseMappings. See
|
|
32
|
+
ff05274becc9e6e1295ed60f3ea090d31d843379.
|
|
33
|
+
|
|
34
|
+
## 0.5.0
|
|
35
|
+
|
|
36
|
+
* Node 0.8 is no longer supported.
|
|
37
|
+
|
|
38
|
+
* Use webpack instead of dryice for bundling.
|
|
39
|
+
|
|
40
|
+
* Big speedups serializing source maps. See pull request #203.
|
|
41
|
+
|
|
42
|
+
* Fix a bug with `SourceMapConsumer.prototype.sourceContentFor` and sources that
|
|
43
|
+
explicitly start with the source root. See issue #199.
|
|
44
|
+
|
|
45
|
+
## 0.4.4
|
|
46
|
+
|
|
47
|
+
* Fix an issue where using a `SourceMapGenerator` after having created a
|
|
48
|
+
`SourceMapConsumer` from it via `SourceMapConsumer.fromSourceMap` failed. See
|
|
49
|
+
issue #191.
|
|
50
|
+
|
|
51
|
+
* Fix an issue with where `SourceMapGenerator` would mistakenly consider
|
|
52
|
+
different mappings as duplicates of each other and avoid generating them. See
|
|
53
|
+
issue #192.
|
|
54
|
+
|
|
55
|
+
## 0.4.3
|
|
56
|
+
|
|
57
|
+
* A very large number of performance improvements, particularly when parsing
|
|
58
|
+
source maps. Collectively about 75% of time shaved off of the source map
|
|
59
|
+
parsing benchmark!
|
|
60
|
+
|
|
61
|
+
* Fix a bug in `SourceMapConsumer.prototype.allGeneratedPositionsFor` and fuzzy
|
|
62
|
+
searching in the presence of a column option. See issue #177.
|
|
63
|
+
|
|
64
|
+
* Fix a bug with joining a source and its source root when the source is above
|
|
65
|
+
the root. See issue #182.
|
|
66
|
+
|
|
67
|
+
* Add the `SourceMapConsumer.prototype.hasContentsOfAllSources` method to
|
|
68
|
+
determine when all sources' contents are inlined into the source map. See
|
|
69
|
+
issue #190.
|
|
70
|
+
|
|
71
|
+
## 0.4.2
|
|
72
|
+
|
|
73
|
+
* Add an `.npmignore` file so that the benchmarks aren't pulled down by
|
|
74
|
+
dependent projects. Issue #169.
|
|
75
|
+
|
|
76
|
+
* Add an optional `column` argument to
|
|
77
|
+
`SourceMapConsumer.prototype.allGeneratedPositionsFor` and better handle lines
|
|
78
|
+
with no mappings. Issues #172 and #173.
|
|
79
|
+
|
|
80
|
+
## 0.4.1
|
|
81
|
+
|
|
82
|
+
* Fix accidentally defining a global variable. #170.
|
|
83
|
+
|
|
84
|
+
## 0.4.0
|
|
85
|
+
|
|
86
|
+
* The default direction for fuzzy searching was changed back to its original
|
|
87
|
+
direction. See #164.
|
|
88
|
+
|
|
89
|
+
* There is now a `bias` option you can supply to `SourceMapConsumer` to control
|
|
90
|
+
the fuzzy searching direction. See #167.
|
|
91
|
+
|
|
92
|
+
* About an 8% speed up in parsing source maps. See #159.
|
|
93
|
+
|
|
94
|
+
* Added a benchmark for parsing and generating source maps.
|
|
95
|
+
|
|
96
|
+
## 0.3.0
|
|
97
|
+
|
|
98
|
+
* Change the default direction that searching for positions fuzzes when there is
|
|
99
|
+
not an exact match. See #154.
|
|
100
|
+
|
|
101
|
+
* Support for environments using json2.js for JSON serialization. See #156.
|
|
102
|
+
|
|
103
|
+
## 0.2.0
|
|
104
|
+
|
|
105
|
+
* Support for consuming "indexed" source maps which do not have any remote
|
|
106
|
+
sections. See pull request #127. This introduces a minor backwards
|
|
107
|
+
incompatibility if you are monkey patching `SourceMapConsumer.prototype`
|
|
108
|
+
methods.
|
|
109
|
+
|
|
110
|
+
## 0.1.43
|
|
111
|
+
|
|
112
|
+
* Performance improvements for `SourceMapGenerator` and `SourceNode`. See issue
|
|
113
|
+
#148 for some discussion and issues #150, #151, and #152 for implementations.
|
|
114
|
+
|
|
115
|
+
## 0.1.42
|
|
116
|
+
|
|
117
|
+
* Fix an issue where `SourceNode`s from different versions of the source-map
|
|
118
|
+
library couldn't be used in conjunction with each other. See issue #142.
|
|
119
|
+
|
|
120
|
+
## 0.1.41
|
|
121
|
+
|
|
122
|
+
* Fix a bug with getting the source content of relative sources with a "./"
|
|
123
|
+
prefix. See issue #145 and [Bug 1090768](bugzil.la/1090768).
|
|
124
|
+
|
|
125
|
+
* Add the `SourceMapConsumer.prototype.computeColumnSpans` method to compute the
|
|
126
|
+
column span of each mapping.
|
|
127
|
+
|
|
128
|
+
* Add the `SourceMapConsumer.prototype.allGeneratedPositionsFor` method to find
|
|
129
|
+
all generated positions associated with a given original source and line.
|
|
130
|
+
|
|
131
|
+
## 0.1.40
|
|
132
|
+
|
|
133
|
+
* Performance improvements for parsing source maps in SourceMapConsumer.
|
|
134
|
+
|
|
135
|
+
## 0.1.39
|
|
136
|
+
|
|
137
|
+
* Fix a bug where setting a source's contents to null before any source content
|
|
138
|
+
had been set before threw a TypeError. See issue #131.
|
|
139
|
+
|
|
140
|
+
## 0.1.38
|
|
141
|
+
|
|
142
|
+
* Fix a bug where finding relative paths from an empty path were creating
|
|
143
|
+
absolute paths. See issue #129.
|
|
144
|
+
|
|
145
|
+
## 0.1.37
|
|
146
|
+
|
|
147
|
+
* Fix a bug where if the source root was an empty string, relative source paths
|
|
148
|
+
would turn into absolute source paths. Issue #124.
|
|
149
|
+
|
|
150
|
+
## 0.1.36
|
|
151
|
+
|
|
152
|
+
* Allow the `names` mapping property to be an empty string. Issue #121.
|
|
153
|
+
|
|
154
|
+
## 0.1.35
|
|
155
|
+
|
|
156
|
+
* A third optional parameter was added to `SourceNode.fromStringWithSourceMap`
|
|
157
|
+
to specify a path that relative sources in the second parameter should be
|
|
158
|
+
relative to. Issue #105.
|
|
159
|
+
|
|
160
|
+
* If no file property is given to a `SourceMapGenerator`, then the resulting
|
|
161
|
+
source map will no longer have a `null` file property. The property will
|
|
162
|
+
simply not exist. Issue #104.
|
|
163
|
+
|
|
164
|
+
* Fixed a bug where consecutive newlines were ignored in `SourceNode`s.
|
|
165
|
+
Issue #116.
|
|
166
|
+
|
|
167
|
+
## 0.1.34
|
|
168
|
+
|
|
169
|
+
* Make `SourceNode` work with windows style ("\r\n") newlines. Issue #103.
|
|
170
|
+
|
|
171
|
+
* Fix bug involving source contents and the
|
|
172
|
+
`SourceMapGenerator.prototype.applySourceMap`. Issue #100.
|
|
173
|
+
|
|
174
|
+
## 0.1.33
|
|
175
|
+
|
|
176
|
+
* Fix some edge cases surrounding path joining and URL resolution.
|
|
177
|
+
|
|
178
|
+
* Add a third parameter for relative path to
|
|
179
|
+
`SourceMapGenerator.prototype.applySourceMap`.
|
|
180
|
+
|
|
181
|
+
* Fix issues with mappings and EOLs.
|
|
182
|
+
|
|
183
|
+
## 0.1.32
|
|
184
|
+
|
|
185
|
+
* Fixed a bug where SourceMapConsumer couldn't handle negative relative columns
|
|
186
|
+
(issue 92).
|
|
187
|
+
|
|
188
|
+
* Fixed test runner to actually report number of failed tests as its process
|
|
189
|
+
exit code.
|
|
190
|
+
|
|
191
|
+
* Fixed a typo when reporting bad mappings (issue 87).
|
|
192
|
+
|
|
193
|
+
## 0.1.31
|
|
194
|
+
|
|
195
|
+
* Delay parsing the mappings in SourceMapConsumer until queried for a source
|
|
196
|
+
location.
|
|
197
|
+
|
|
198
|
+
* Support Sass source maps (which at the time of writing deviate from the spec
|
|
199
|
+
in small ways) in SourceMapConsumer.
|
|
200
|
+
|
|
201
|
+
## 0.1.30
|
|
202
|
+
|
|
203
|
+
* Do not join source root with a source, when the source is a data URI.
|
|
204
|
+
|
|
205
|
+
* Extend the test runner to allow running single specific test files at a time.
|
|
206
|
+
|
|
207
|
+
* Performance improvements in `SourceNode.prototype.walk` and
|
|
208
|
+
`SourceMapConsumer.prototype.eachMapping`.
|
|
209
|
+
|
|
210
|
+
* Source map browser builds will now work inside Workers.
|
|
211
|
+
|
|
212
|
+
* Better error messages when attempting to add an invalid mapping to a
|
|
213
|
+
`SourceMapGenerator`.
|
|
214
|
+
|
|
215
|
+
## 0.1.29
|
|
216
|
+
|
|
217
|
+
* Allow duplicate entries in the `names` and `sources` arrays of source maps
|
|
218
|
+
(usually from TypeScript) we are parsing. Fixes github issue 72.
|
|
219
|
+
|
|
220
|
+
## 0.1.28
|
|
221
|
+
|
|
222
|
+
* Skip duplicate mappings when creating source maps from SourceNode; github
|
|
223
|
+
issue 75.
|
|
224
|
+
|
|
225
|
+
## 0.1.27
|
|
226
|
+
|
|
227
|
+
* Don't throw an error when the `file` property is missing in SourceMapConsumer,
|
|
228
|
+
we don't use it anyway.
|
|
229
|
+
|
|
230
|
+
## 0.1.26
|
|
231
|
+
|
|
232
|
+
* Fix SourceNode.fromStringWithSourceMap for empty maps. Fixes github issue 70.
|
|
233
|
+
|
|
234
|
+
## 0.1.25
|
|
235
|
+
|
|
236
|
+
* Make compatible with browserify
|
|
237
|
+
|
|
238
|
+
## 0.1.24
|
|
239
|
+
|
|
240
|
+
* Fix issue with absolute paths and `file://` URIs. See
|
|
241
|
+
https://bugzilla.mozilla.org/show_bug.cgi?id=885597
|
|
242
|
+
|
|
243
|
+
## 0.1.23
|
|
244
|
+
|
|
245
|
+
* Fix issue with absolute paths and sourcesContent, github issue 64.
|
|
246
|
+
|
|
247
|
+
## 0.1.22
|
|
248
|
+
|
|
249
|
+
* Ignore duplicate mappings in SourceMapGenerator. Fixes github issue 21.
|
|
250
|
+
|
|
251
|
+
## 0.1.21
|
|
252
|
+
|
|
253
|
+
* Fixed handling of sources that start with a slash so that they are relative to
|
|
254
|
+
the source root's host.
|
|
255
|
+
|
|
256
|
+
## 0.1.20
|
|
257
|
+
|
|
258
|
+
* Fixed github issue #43: absolute URLs aren't joined with the source root
|
|
259
|
+
anymore.
|
|
260
|
+
|
|
261
|
+
## 0.1.19
|
|
262
|
+
|
|
263
|
+
* Using Travis CI to run tests.
|
|
264
|
+
|
|
265
|
+
## 0.1.18
|
|
266
|
+
|
|
267
|
+
* Fixed a bug in the handling of sourceRoot.
|
|
268
|
+
|
|
269
|
+
## 0.1.17
|
|
270
|
+
|
|
271
|
+
* Added SourceNode.fromStringWithSourceMap.
|
|
272
|
+
|
|
273
|
+
## 0.1.16
|
|
274
|
+
|
|
275
|
+
* Added missing documentation.
|
|
276
|
+
|
|
277
|
+
* Fixed the generating of empty mappings in SourceNode.
|
|
278
|
+
|
|
279
|
+
## 0.1.15
|
|
280
|
+
|
|
281
|
+
* Added SourceMapGenerator.applySourceMap.
|
|
282
|
+
|
|
283
|
+
## 0.1.14
|
|
284
|
+
|
|
285
|
+
* The sourceRoot is now handled consistently.
|
|
286
|
+
|
|
287
|
+
## 0.1.13
|
|
288
|
+
|
|
289
|
+
* Added SourceMapGenerator.fromSourceMap.
|
|
290
|
+
|
|
291
|
+
## 0.1.12
|
|
292
|
+
|
|
293
|
+
* SourceNode now generates empty mappings too.
|
|
294
|
+
|
|
295
|
+
## 0.1.11
|
|
296
|
+
|
|
297
|
+
* Added name support to SourceNode.
|
|
298
|
+
|
|
299
|
+
## 0.1.10
|
|
300
|
+
|
|
301
|
+
* Added sourcesContent support to the customer and generator.
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
3.3.1 / 2020-06-18
|
|
3
|
+
==================
|
|
4
|
+
|
|
5
|
+
**fixes**
|
|
6
|
+
* [[`0d94a24`](http://github.com/thenables/thenify/commit/0d94a24eb933bc835d568f3009f4d269c4c4c17a)] - fix: remove eval (#30) (Yiyu He <<dead_horse@qq.com>>)
|
|
7
|
+
|
|
8
|
+
3.3.0 / 2017-05-19
|
|
9
|
+
==================
|
|
10
|
+
|
|
11
|
+
* feat: support options.multiArgs and options.withCallback (#27)
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [5.0.8](https://www.github.com/yargs/y18n/compare/v5.0.7...v5.0.8) (2021-04-07)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deno:** force modern release for Deno ([b1c215a](https://www.github.com/yargs/y18n/commit/b1c215aed714bee5830e76de3e335504dc2c4dab))
|
|
11
|
+
|
|
12
|
+
### [5.0.7](https://www.github.com/yargs/y18n/compare/v5.0.6...v5.0.7) (2021-04-07)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **deno:** force release for deno ([#121](https://www.github.com/yargs/y18n/issues/121)) ([d3f2560](https://www.github.com/yargs/y18n/commit/d3f2560e6cedf2bfa2352e9eec044da53f9a06b2))
|
|
18
|
+
|
|
19
|
+
### [5.0.6](https://www.github.com/yargs/y18n/compare/v5.0.5...v5.0.6) (2021-04-05)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* **webpack:** skip readFileSync if not defined ([#117](https://www.github.com/yargs/y18n/issues/117)) ([6966fa9](https://www.github.com/yargs/y18n/commit/6966fa91d2881cc6a6c531e836099e01f4da1616))
|
|
25
|
+
|
|
26
|
+
### [5.0.5](https://www.github.com/yargs/y18n/compare/v5.0.4...v5.0.5) (2020-10-25)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* address prototype pollution issue ([#108](https://www.github.com/yargs/y18n/issues/108)) ([a9ac604](https://www.github.com/yargs/y18n/commit/a9ac604abf756dec9687be3843e2c93bfe581f25))
|
|
32
|
+
|
|
33
|
+
### [5.0.4](https://www.github.com/yargs/y18n/compare/v5.0.3...v5.0.4) (2020-10-16)
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **exports:** node 13.0 and 13.1 require the dotted object form _with_ a string fallback ([#105](https://www.github.com/yargs/y18n/issues/105)) ([4f85d80](https://www.github.com/yargs/y18n/commit/4f85d80dbaae6d2c7899ae394f7ad97805df4886))
|
|
39
|
+
|
|
40
|
+
### [5.0.3](https://www.github.com/yargs/y18n/compare/v5.0.2...v5.0.3) (2020-10-16)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
### Bug Fixes
|
|
44
|
+
|
|
45
|
+
* **exports:** node 13.0-13.6 require a string fallback ([#103](https://www.github.com/yargs/y18n/issues/103)) ([e39921e](https://www.github.com/yargs/y18n/commit/e39921e1017f88f5d8ea97ddea854ffe92d68e74))
|
|
46
|
+
|
|
47
|
+
### [5.0.2](https://www.github.com/yargs/y18n/compare/v5.0.1...v5.0.2) (2020-10-01)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
### Bug Fixes
|
|
51
|
+
|
|
52
|
+
* **deno:** update types for deno ^1.4.0 ([#100](https://www.github.com/yargs/y18n/issues/100)) ([3834d9a](https://www.github.com/yargs/y18n/commit/3834d9ab1332f2937c935ada5e76623290efae81))
|
|
53
|
+
|
|
54
|
+
### [5.0.1](https://www.github.com/yargs/y18n/compare/v5.0.0...v5.0.1) (2020-09-05)
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
### Bug Fixes
|
|
58
|
+
|
|
59
|
+
* main had old index path ([#98](https://www.github.com/yargs/y18n/issues/98)) ([124f7b0](https://www.github.com/yargs/y18n/commit/124f7b047ba9596bdbdf64459988304e77f3de1b))
|
|
60
|
+
|
|
61
|
+
## [5.0.0](https://www.github.com/yargs/y18n/compare/v4.0.0...v5.0.0) (2020-09-05)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
### ⚠ BREAKING CHANGES
|
|
65
|
+
|
|
66
|
+
* exports maps are now used, which modifies import behavior.
|
|
67
|
+
* drops Node 6 and 4. begin following Node.js LTS schedule (#89)
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
* add support for ESM and Deno [#95](https://www.github.com/yargs/y18n/issues/95)) ([4d7ae94](https://www.github.com/yargs/y18n/commit/4d7ae94bcb42e84164e2180366474b1cd321ed94))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Build System
|
|
75
|
+
|
|
76
|
+
* drops Node 6 and 4. begin following Node.js LTS schedule ([#89](https://www.github.com/yargs/y18n/issues/89)) ([3cc0c28](https://www.github.com/yargs/y18n/commit/3cc0c287240727b84eaf1927f903612ec80f5e43))
|
|
77
|
+
|
|
78
|
+
### 4.0.1 (2020-10-25)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* address prototype pollution issue ([#108](https://www.github.com/yargs/y18n/issues/108)) ([a9ac604](https://www.github.com/yargs/y18n/commit/7de58ca0d315990cdb38234e97fc66254cdbcd71))
|
|
84
|
+
|
|
85
|
+
## [4.0.0](https://github.com/yargs/y18n/compare/v3.2.1...v4.0.0) (2017-10-10)
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
### Bug Fixes
|
|
89
|
+
|
|
90
|
+
* allow support for falsy values like 0 in tagged literal ([#45](https://github.com/yargs/y18n/issues/45)) ([c926123](https://github.com/yargs/y18n/commit/c926123))
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
### Features
|
|
94
|
+
|
|
95
|
+
* **__:** added tagged template literal support ([#44](https://github.com/yargs/y18n/issues/44)) ([0598daf](https://github.com/yargs/y18n/commit/0598daf))
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
### BREAKING CHANGES
|
|
99
|
+
|
|
100
|
+
* **__:** dropping Node 0.10/Node 0.12 support
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
## [16.2.0](https://www.github.com/yargs/yargs/compare/v16.1.1...v16.2.0) (2020-12-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* command() now accepts an array of modules ([f415388](https://www.github.com/yargs/yargs/commit/f415388cc454d02786c65c50dd6c7a0cf9d8b842))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* add package.json to module exports ([#1818](https://www.github.com/yargs/yargs/issues/1818)) ([d783a49](https://www.github.com/yargs/yargs/commit/d783a49a7f21c9bbd4eec2990268f3244c4d5662)), closes [#1817](https://www.github.com/yargs/yargs/issues/1817)
|
|
16
|
+
|
|
17
|
+
### [16.1.1](https://www.github.com/yargs/yargs/compare/v16.1.0...v16.1.1) (2020-11-15)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* expose helpers for legacy versions of Node.js ([#1801](https://www.github.com/yargs/yargs/issues/1801)) ([107deaa](https://www.github.com/yargs/yargs/commit/107deaa4f68b7bc3f2386041e1f4fe0272b29c0a))
|
|
23
|
+
* **deno:** get yargs working on deno@1.5.x ([#1799](https://www.github.com/yargs/yargs/issues/1799)) ([cb01c98](https://www.github.com/yargs/yargs/commit/cb01c98c44e30f55c2dc9434caef524ae433d9a4))
|
|
24
|
+
|
|
25
|
+
## [16.1.0](https://www.github.com/yargs/yargs/compare/v16.0.3...v16.1.0) (2020-10-15)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* expose hideBin helper for CJS ([#1768](https://www.github.com/yargs/yargs/issues/1768)) ([63e1173](https://www.github.com/yargs/yargs/commit/63e1173bb47dc651c151973a16ef659082a9ae66))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
* **deno:** update types for deno ^1.4.0 ([#1772](https://www.github.com/yargs/yargs/issues/1772)) ([0801752](https://www.github.com/yargs/yargs/commit/080175207d281be63edf90adfe4f0568700b0bf5))
|
|
36
|
+
* **exports:** node 13.0-13.6 require a string fallback ([#1776](https://www.github.com/yargs/yargs/issues/1776)) ([b45c43a](https://www.github.com/yargs/yargs/commit/b45c43a5f64b565c3794f9792150eaeec4e00b69))
|
|
37
|
+
* **modules:** module path was incorrect ([#1759](https://www.github.com/yargs/yargs/issues/1759)) ([95a4a0a](https://www.github.com/yargs/yargs/commit/95a4a0ac573cfe158e6e4bc8c8682ebd1644a198))
|
|
38
|
+
* **positional:** positional strings no longer drop decimals ([#1761](https://www.github.com/yargs/yargs/issues/1761)) ([e1a300f](https://www.github.com/yargs/yargs/commit/e1a300f1293ad821c900284616337f080b207980))
|
|
39
|
+
* make positionals in -- count towards validation ([#1752](https://www.github.com/yargs/yargs/issues/1752)) ([eb2b29d](https://www.github.com/yargs/yargs/commit/eb2b29d34f1a41e0fd6c4e841960e5bfc329dc3c))
|
|
40
|
+
|
|
41
|
+
### [16.0.3](https://www.github.com/yargs/yargs/compare/v16.0.2...v16.0.3) (2020-09-10)
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Bug Fixes
|
|
45
|
+
|
|
46
|
+
* move yargs.cjs to yargs to fix Node 10 imports ([#1747](https://www.github.com/yargs/yargs/issues/1747)) ([5bfb85b](https://www.github.com/yargs/yargs/commit/5bfb85b33b85db8a44b5f7a700a8e4dbaf022df0))
|
|
47
|
+
|
|
48
|
+
### [16.0.2](https://www.github.com/yargs/yargs/compare/v16.0.1...v16.0.2) (2020-09-09)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
### Bug Fixes
|
|
52
|
+
|
|
53
|
+
* **typescript:** yargs-parser was breaking @types/yargs ([#1745](https://www.github.com/yargs/yargs/issues/1745)) ([2253284](https://www.github.com/yargs/yargs/commit/2253284b233cceabd8db677b81c5bf1755eef230))
|
|
54
|
+
|
|
55
|
+
### [16.0.1](https://www.github.com/yargs/yargs/compare/v16.0.0...v16.0.1) (2020-09-09)
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
### Bug Fixes
|
|
59
|
+
|
|
60
|
+
* code was not passed to process.exit ([#1742](https://www.github.com/yargs/yargs/issues/1742)) ([d1a9930](https://www.github.com/yargs/yargs/commit/d1a993035a2f76c138460052cf19425f9684b637))
|
|
61
|
+
|
|
62
|
+
## [16.0.0](https://www.github.com/yargs/yargs/compare/v15.4.2...v16.0.0) (2020-09-09)
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
### ⚠ BREAKING CHANGES
|
|
66
|
+
|
|
67
|
+
* tweaks to ESM/Deno API surface: now exports yargs function by default; getProcessArgvWithoutBin becomes hideBin; types now exported for Deno.
|
|
68
|
+
* find-up replaced with escalade; export map added (limits importable files in Node >= 12); yarser-parser@19.x.x (new decamelize/camelcase implementation).
|
|
69
|
+
* **usage:** single character aliases are now shown first in help output
|
|
70
|
+
* rebase helper is no longer provided on yargs instance.
|
|
71
|
+
* drop support for EOL Node 8 (#1686)
|
|
72
|
+
|
|
73
|
+
### Features
|
|
74
|
+
|
|
75
|
+
* adds strictOptions() ([#1738](https://www.github.com/yargs/yargs/issues/1738)) ([b215fba](https://www.github.com/yargs/yargs/commit/b215fba0ed6e124e5aad6cf22c8d5875661c63a3))
|
|
76
|
+
* **helpers:** rebase, Parser, applyExtends now blessed helpers ([#1733](https://www.github.com/yargs/yargs/issues/1733)) ([c7debe8](https://www.github.com/yargs/yargs/commit/c7debe8eb1e5bc6ea20b5ed68026c56e5ebec9e1))
|
|
77
|
+
* adds support for ESM and Deno ([#1708](https://www.github.com/yargs/yargs/issues/1708)) ([ac6d5d1](https://www.github.com/yargs/yargs/commit/ac6d5d105a75711fe703f6a39dad5181b383d6c6))
|
|
78
|
+
* drop support for EOL Node 8 ([#1686](https://www.github.com/yargs/yargs/issues/1686)) ([863937f](https://www.github.com/yargs/yargs/commit/863937f23c3102f804cdea78ee3097e28c7c289f))
|
|
79
|
+
* i18n for ESM and Deno ([#1735](https://www.github.com/yargs/yargs/issues/1735)) ([c71783a](https://www.github.com/yargs/yargs/commit/c71783a5a898a0c0e92ac501c939a3ec411ac0c1))
|
|
80
|
+
* tweaks to API surface based on user feedback ([#1726](https://www.github.com/yargs/yargs/issues/1726)) ([4151fee](https://www.github.com/yargs/yargs/commit/4151fee4c33a97d26bc40de7e623e5b0eb87e9bb))
|
|
81
|
+
* **usage:** single char aliases first in help ([#1574](https://www.github.com/yargs/yargs/issues/1574)) ([a552990](https://www.github.com/yargs/yargs/commit/a552990c120646c2d85a5c9b628e1ce92a68e797))
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
### Bug Fixes
|
|
85
|
+
|
|
86
|
+
* **yargs:** add missing command(module) signature ([#1707](https://www.github.com/yargs/yargs/issues/1707)) ([0f81024](https://www.github.com/yargs/yargs/commit/0f810245494ccf13a35b7786d021b30fc95ecad5)), closes [#1704](https://www.github.com/yargs/yargs/issues/1704)
|
|
87
|
+
|
|
88
|
+
[Older CHANGELOG Entries](https://github.com/yargs/yargs/blob/master/docs/CHANGELOG-historical.md)
|