@architect/parser
Advanced tools
Comparing version 3.0.0 to 3.0.1
@@ -5,2 +5,15 @@ # Architect Parser changelog | ||
## [3.0.1] 2020-12-02 | ||
### Added | ||
- Added i18n support for non-ascii string chars | ||
### Fixed | ||
- Fixed missing tilde from supported string chars | ||
--- | ||
## [3.0.0] 2020-11-20 | ||
@@ -7,0 +20,0 @@ |
{ | ||
"name": "@architect/parser", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "Architect Parser accepts plaintext, JSON, or YAML .arc manifests and returns a plain JavaScript Object", | ||
@@ -28,3 +28,3 @@ "main": "./src/index.js", | ||
"@architect/eslint-config": "1.0.0", | ||
"@rollup/plugin-commonjs": "^16.0.0", | ||
"@rollup/plugin-commonjs": "^17.0.0", | ||
"@rollup/plugin-json": "^4.1.0", | ||
@@ -31,0 +31,0 @@ "assert-diff": "~3.0.1", |
@@ -57,3 +57,3 @@ // we-like-strings-LikeThisOne_or_2 | ||
*/ | ||
const STRING = /(\()|(\))|(\/)|([a-zA-Z0-9])|(-)|(\_)|(\.)|(\,)|(\:)|(\$)|(\*)|(\?)|(\&)|(\!)|(\%)|(\=)|(\+)|(\|)|(\^)|(\`)|(\')|(\")/ | ||
const STRING = /(\()|(\))|(\/)|(\w)|(\~)|(-)|(\_)|(\.)|(\,)|(\:)|(\$)|(\*)|(\?)|(\&)|(\!)|(\%)|(\=)|(\+)|(\|)|(\^)|(\`)|(\')|(\")/ | ||
@@ -60,0 +60,0 @@ /** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
200536