Skip to content

Commit

Permalink
Addresses issue #115: Add labels to changelog items
Browse files Browse the repository at this point in the history
and reformat changelog items to display as item number,
item title, labels.
  • Loading branch information
jeffschwartz committed Oct 14, 2024
1 parent b8c2603 commit c54a37d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 36 deletions.
54 changes: 19 additions & 35 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,22 @@

## v1.3.0

- Update README.md to reflect v1.3.0. #106

- Update to Node v20.11.0 LTS and address all related issues. #112

- cache.ts::readCache routine can inadvertently return undefined if path isn't in the cache and the file doesn't exist. #111

- Remove logging metrics for css files. #110

- Add changelog to project. #109

- Rename function serializeCSSFolder to serializeCSSLIbsFolder. #107

- Update Buster dependency to v1.1.1. #105

- Console output related to Typescript compilation should identify being for either components or for browser scripts. #103

- Ignore script and code tags during tokenization. #102

- Include tokens in code blocks are being reported as unresolved. #101

- CSS files should be first class assets to support {baseURL} tokenizatiion. #100

- Unresolved token reporting drops the last closing brace for include tokens. #98

- Log warning to the console if user project does not have a 404.html document. #97

- Update to Node v18.18.0 LTS and address all related issues. #95

- Include cache bust metric when release is called without the --verbose option and is called with the --cache-bust option. #94

- Refactor the cli help to accommodate multiple command options. #93

- Provide CLI --verbose logging option. #92

- Update Buster dependency to v1.1.0. #91
- #112: Update to Node v20.11.0 LTS and address all related issues. [revision]
- #111: cache.ts::readCache routine can inadvertently return undefined if path isn't in the cache and the file doesn't exist. [bug]
- #110: Remove logging metrics for css files. [revision]
- #109: Add changelog to project. [documentation, feature]
- #107: Rename function serializeCSSFolder to serializeCSSLIbsFolder. [revision]
- #106: Update README.md to reflect v1.3.0. [documentation, revision]
- #105: Update Buster dependency to v1.1.1. [revision]
- #103: Console output related to Typescript compilation should identify being for either components or for browser scripts. [bug, revision]
- #102: Ignore script and code tags during tokenization. [feature, revision]
- #101: Include tokens in code blocks are being reported as unresolved. [bug]
- #100: CSS files should be first class assets to support {baseURL} tokenizatiion. [feature, revision]
- #98: Unresolved token reporting drops the last closing brace for include tokens. [bug, revision]
- #97: Log warning to the console if user project does not have a 404.html document. [feature, revision]
- #96: Though template front matter is documented as a requirement, this is not enforced in the codebase. [wontfix, revision]
- #95: Update to Node v18.18.0 LTS and address all related issues. [revision]
- #94: Include cache bust metric when release is called without the --verbose option and is called with the --cache-bust option. [revision]
- #93: Refactor the cli help to accommodate multiple command options. [feature]
- #92: Provide CLI --verbose logging option. [feature, revision]
- #91: Update Buster dependency to v1.1.0. [revision]
2 changes: 1 addition & 1 deletion src/core/lib/findAndReplaceTokenContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import type { Token } from "../../types/types";

const regexpBuilder = function(token: string): RegExp {
// This regex ignores script and code tags to guard agains applying tokens to their content.
// This regex ignores script and code tags to guard against applying tokens to their content.
const r = `${token}(?![<]*>|[^<>]*</(?:script|code)>)`;
return new RegExp(r, "g");
};
Expand Down

0 comments on commit c54a37d

Please sign in to comment.