From 853869f84f7f36e6cf8e1d35e3bb761e14423bd0 Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Mon, 20 Apr 2020 14:53:15 +0100 Subject: [PATCH] docs(parse): fix branch links --- packages/parse/README.md | 22 +++++++++++----------- packages/parse/package.json | 1 - packages/parse/tpl.readme.md | 14 +++++++------- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/packages/parse/README.md b/packages/parse/README.md index 58d1524dfd..01c96e532d 100644 --- a/packages/parse/README.md +++ b/packages/parse/README.md @@ -60,10 +60,10 @@ Package sizes (gzipped, pre-treeshake): ESM: 4.44 KB / CJS: 4.77 KB / UMD: 4.46 ## Dependencies -- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/api) -- [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/checks) -- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/errors) -- [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/strings) +- [@thi.ng/api](https://github.com/thi-ng/umbrella/tree/develop/packages/api) +- [@thi.ng/checks](https://github.com/thi-ng/umbrella/tree/develop/packages/checks) +- [@thi.ng/errors](https://github.com/thi-ng/umbrella/tree/develop/packages/errors) +- [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/develop/packages/strings) ## API @@ -73,10 +73,10 @@ TODO ### Context & reader creation -- [`defContext`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/context.ts) +- [`defContext`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/context.ts) Source: -[/readers](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/readers) +[/readers](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/readers) - `defArrayReader` - `defStringReader` @@ -84,7 +84,7 @@ Source: ### Presets parsers Source: -[/presets](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/presets) +[/presets](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/presets) - `WS` / `WS0` / `WS1` / `NL` / `DNL` / `SPACE` / `SPACES` / `SPACES0` - `ALPHA` / `LOWER_CASE` / `UPPER_CASE` / `ALPHA_NUM` @@ -97,7 +97,7 @@ Source: ### Primitives Source: -[/prims](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/prims) +[/prims](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/prims) - `always` - `fail` @@ -124,7 +124,7 @@ Source: ### Combinators Source: -[/combinators](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/combinators) +[/combinators](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/combinators) - `alt` / `altD` - `check` @@ -139,7 +139,7 @@ Source: ### Transformers Source: -[/xform](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/xform) +[/xform](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/xform) Syntax sugars for `xform(parser, fn)`: @@ -163,7 +163,7 @@ Actual transforms: ## Grammar definition Complex parsers can be constructed via -[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/grammar.ts#L228), +[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/grammar.ts#L228), which accepts a string of rule definitions in the built-in (and still WIP) grammar rule definition language, similar to PEGs and regular expressions: diff --git a/packages/parse/package.json b/packages/parse/package.json index 2e8be5dfd4..7909998b85 100644 --- a/packages/parse/package.json +++ b/packages/parse/package.json @@ -69,7 +69,6 @@ }, "sideEffects": false, "thi.ng": { - "branch": "feature/parse", "status": "alpha", "year": 2020 } diff --git a/packages/parse/tpl.readme.md b/packages/parse/tpl.readme.md index ef0c000c52..55ea90f4c9 100644 --- a/packages/parse/tpl.readme.md +++ b/packages/parse/tpl.readme.md @@ -57,10 +57,10 @@ TODO ### Context & reader creation -- [`defContext`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/context.ts) +- [`defContext`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/context.ts) Source: -[/readers](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/readers) +[/readers](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/readers) - `defArrayReader` - `defStringReader` @@ -68,7 +68,7 @@ Source: ### Presets parsers Source: -[/presets](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/presets) +[/presets](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/presets) - `WS` / `WS0` / `WS1` / `NL` / `DNL` / `SPACE` / `SPACES` / `SPACES0` - `ALPHA` / `LOWER_CASE` / `UPPER_CASE` / `ALPHA_NUM` @@ -81,7 +81,7 @@ Source: ### Primitives Source: -[/prims](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/prims) +[/prims](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/prims) - `always` - `fail` @@ -108,7 +108,7 @@ Source: ### Combinators Source: -[/combinators](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/combinators) +[/combinators](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/combinators) - `alt` / `altD` - `check` @@ -123,7 +123,7 @@ Source: ### Transformers Source: -[/xform](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/xform) +[/xform](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/xform) Syntax sugars for `xform(parser, fn)`: @@ -147,7 +147,7 @@ Actual transforms: ## Grammar definition Complex parsers can be constructed via -[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/feature/parse/packages/parse/src/grammar.ts#L228), +[`defGrammar()`](https://github.com/thi-ng/umbrella/tree/develop/packages/parse/src/grammar.ts#L228), which accepts a string of rule definitions in the built-in (and still WIP) grammar rule definition language, similar to PEGs and regular expressions: