Skip to content

Commit 9c0fd5f

Browse files
authored
Update branch links, npm readme (#1606)
1 parent 43fed87 commit 9c0fd5f

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Src/js/cql-to-elm-ui/app/cql-compiler-playground.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ export function CqlCompilerPlayground() {
406406
"url(https://raw.githubusercontent.com/microsoft/vscode-icons/refs/heads/main/icons/light/github-inverted.svg) center/18px 18px no-repeat",
407407
}}
408408
href={
409-
"https://github.com/cqframework/clinical_quality_language/tree/feature-kotlin/Src/js/cql-to-elm-ui"
409+
"https://github.com/cqframework/clinical_quality_language/tree/master/Src/js/cql-to-elm-ui"
410410
}
411411
/>
412412
</div>

Src/js/cql/README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CQL.js
22

3-
[![npm package](https://badge.fury.io/js/%40cqframework%2Fcql.svg)](https://badge.fury.io/js/%40cqframework%2Fcql)
3+
![NPM Version](https://img.shields.io/npm/v/%40cqframework%2Fcql)
44

55
JavaScript tools for the Clinical Quality Language (CQL).
66

@@ -18,7 +18,7 @@ use it in Node.js and the browser (both on the main thread and in web workers).
1818
The library includes a fully featured CQL translator, allowing you to compile CQL to ELM in JavaScript environments:
1919

2020
```js
21-
import {ModelManager, LibraryManager, CqlTranslator} from "@cqframework/cql/cql-to-elm";
21+
import { ModelManager, LibraryManager, CqlTranslator } from "@cqframework/cql/cql-to-elm";
2222

2323
const modelManager = new ModelManager();
2424
// Register the necessary model info providers with the model manager here
@@ -28,9 +28,6 @@ const cqlTranslator = CqlTranslator.fromText("library Test version '1.0.0'", lib
2828
const elmJson = cqlTranslator.toJson();
2929
```
3030

31-
For a complete example, see the source of the
32-
[demo CQL to ELM app](https://github.com/cqframework/clinical_quality_language/tree/feature-kotlin/Src/js/cql-to-elm-ui).
33-
3431
### TypeScript support
3532

3633
The TypeScript definitions included in this package are automatically generated from the Kotlin code. The generator is
@@ -40,8 +37,8 @@ so the types may not be perfect.
4037
## Project status
4138

4239
This package is built from the Kotlin
43-
Multiplatform [source](https://github.com/cqframework/clinical_quality_language/tree/feature-kotlin/Src/java) which
44-
itself evolved from the reference Java implementation. The KMP project targets the JVM and JavaScript environments with
40+
Multiplatform [source](https://github.com/cqframework/clinical_quality_language/tree/master/Src/java) which itself
41+
evolved from the reference Java implementation. The KMP project targets the JVM and JavaScript environments with
4542
the goal of maintaining a single, shared codebase for both platforms.
4643

4744
This new JavaScript target is currently in beta and its API may change in future releases. If you encounter any issues,

Src/js/cql/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
"cql",
77
"clinical quality language"
88
],
9-
"repository": "cqframework/clinical_quality_language",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/cqframework/clinical_quality_language.git"
12+
},
1013
"license": "Apache-2.0",
1114
"type": "module",
1215
"exports": {

0 commit comments

Comments
 (0)