@haste-health/lang-fp 0.2.3 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +7 -9
package/CHANGELOG.md
ADDED
package/package.json
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haste-health/lang-fp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "FHIRPath language support for CodeMirror",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"lezer": "lezer-generator src/syntax.grammar -o src/syntax.grammar.js",
|
|
7
|
-
"prepare": "pnpm lezer && rollup -c",
|
|
8
|
-
"build": "pnpm prepare",
|
|
9
|
-
"publish": "pnpm build && pnpm npm publish --access public --tolerate-republish"
|
|
10
|
-
},
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "FHIRPath language support for CodeMirror. Includes syntax highlighting and parsing.",
|
|
11
5
|
"type": "module",
|
|
12
6
|
"main": "lib/index.cjs",
|
|
13
7
|
"module": "lib/index.js",
|
|
@@ -31,5 +25,9 @@
|
|
|
31
25
|
"rollup-plugin-ts": "^3.4.5",
|
|
32
26
|
"typescript": "^4.9.5"
|
|
33
27
|
},
|
|
34
|
-
"license": "MIT"
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"scripts": {
|
|
30
|
+
"lezer": "lezer-generator src/syntax.grammar -o src/syntax.grammar.js",
|
|
31
|
+
"build": "pnpm prepare"
|
|
32
|
+
}
|
|
35
33
|
}
|