@octopusdeploy/ocl
Advanced tools
Comparing version 0.1.0 to 0.1.1
# Changelog | ||
### [0.1.1](https://www.github.com/OctopusDeploy/ocl.ts/compare/v0.1.0...v0.1.1) (2022-02-24) | ||
### Bug Fixes | ||
* getting stuck in a loop when parsing ' ([549f19a](https://www.github.com/OctopusDeploy/ocl.ts/commit/549f19ad98753b2648098fb46dda05e6f5679beb)) | ||
## [0.1.0](https://www.github.com/OctopusDeploy/ocl.ts/compare/v0.0.6...v0.1.0) (2021-10-27) | ||
@@ -4,0 +11,0 @@ |
@@ -77,3 +77,3 @@ "use strict"; | ||
var value = ''; | ||
while (!['EOF', '\n', '\r', ' ', '"', '=', '{', '}', '[', ']', '\'', ','].includes(this.currentChar)) { | ||
while (!['EOF', '\n', '\r', ' ', '"', '=', '{', '}', '[', ']', ','].includes(this.currentChar)) { | ||
value += this.currentChar; | ||
@@ -80,0 +80,0 @@ this.nextChar(); |
@@ -40,7 +40,6 @@ { | ||
"prepare": "npm run build", | ||
"start": "ts-node-dev ./src/main.ts", | ||
"test": "jest" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"version": "0.1.0" | ||
"version": "0.1.1" | ||
} |
@@ -1,3 +0,3 @@ | ||
# ocl.ts | ||
# :octopus: TypeScript Library for OCL | ||
This library is used to process Octopus Configuration Language (OCL) (see [syntax](https://github.com/OctopusDeploy/ocl#syntax) for more information). | ||
This repository contains the source code for the TypeScript library for OCL (Octopus Configuration Language, [syntax](https://github.com/OctopusDeploy/ocl#syntax)). It provides an implementation of an abstract syntax tree (AST) for processing OCL fragments/documents. |
Sorry, the diff of this file is not supported yet
52900
4