@qrvey/formula-lang 0.5.1 → 0.5.2
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 +2 -2
- package/package.json +3 -2
- package/qrvey-formula-lang-0.5.2.tgz +0 -0
- package/.vscode/launch.json +0 -15
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qrvey/formula-lang",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.2",
|
|
4
4
|
"description": "QFormula support for qrvey projects",
|
|
5
5
|
"types": "dist/module/index.d.ts",
|
|
6
|
+
"main": "dist/module/index.js",
|
|
6
7
|
"exports": {
|
|
7
8
|
".": {
|
|
8
9
|
"import": "./dist/module/index.js",
|
|
@@ -12,7 +13,7 @@
|
|
|
12
13
|
"scripts": {
|
|
13
14
|
"test": "jest __tests__",
|
|
14
15
|
"test:coverage": "jest __tests__ --collect-coverage",
|
|
15
|
-
"build": "tsc && tsc -m commonjs --outDir dist/cjs",
|
|
16
|
+
"build": "rm -rf dist && tsc && tsc -m commonjs --outDir dist/cjs",
|
|
16
17
|
"build:watch": "tsc -w",
|
|
17
18
|
"debug:bundle": "webpack",
|
|
18
19
|
"debug:watch": "webpack --watch",
|
|
Binary file
|
package/.vscode/launch.json
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"type": "chrome",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"name": "Launch Chrome against localhost",
|
|
11
|
-
"url": "http://localhost:3553",
|
|
12
|
-
"webRoot": "${workspaceFolder}"
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
}
|