formbuilder-lhcforms 9.7.2 → 9.7.4
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/README.md +70 -18
- package/dist/formbuilder-lhcforms/3rdpartylicenses.txt +25 -0
- package/dist/formbuilder-lhcforms/assets/version.json +1 -1
- package/dist/formbuilder-lhcforms/index.html +1 -1
- package/dist/formbuilder-lhcforms/main.056d580c19f930b2.js +1 -0
- package/package.json +18 -18
- package/dist/formbuilder-lhcforms/main.a1d68dfcd4c23082.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formbuilder-lhcforms",
|
|
3
|
-
"version": "9.7.
|
|
3
|
+
"version": "9.7.4",
|
|
4
4
|
"description": "Build LHC-Forms and FHIR Questionnaires",
|
|
5
5
|
"homepage": "https://github.com/lhncbc/formbuilder-lhcforms",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -14,29 +14,29 @@
|
|
|
14
14
|
"devPort": "9030"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
|
-
"ng": "ng",
|
|
18
|
-
"start": "ng serve --port ${npm_package_config_devPort} -c development",
|
|
17
|
+
"ng": "npx ng",
|
|
18
|
+
"start": "npx ng serve --port ${npm_package_config_devPort} -c development",
|
|
19
19
|
"start-public": "node ./bin/start-public.js",
|
|
20
20
|
"install-and-build": "npm install && npm run clean-build",
|
|
21
|
-
"clean-build": "ng cache clean && npm ci && npm run build",
|
|
22
|
-
"build-with-test-html": "ng build --configuration prod_with_test_html",
|
|
21
|
+
"clean-build": "npx ng cache clean && npm ci && npm run build",
|
|
22
|
+
"build-with-test-html": "npx ng build --configuration prod_with_test_html",
|
|
23
23
|
"create-version-file": "echo {\\\"version\\\": \\\"${npm_package_version}\\\"} > ./src/assets/version.json",
|
|
24
|
-
"build": "npm run create-version-file && ng build --configuration production",
|
|
24
|
+
"build": "npm run create-version-file && npx ng build --configuration production",
|
|
25
25
|
"test": "npm run unit-test && npm run e2e:prod",
|
|
26
|
-
"unit-test": "ng test --watch=false",
|
|
27
|
-
"lint": "ng lint",
|
|
28
|
-
"cy:verify": "cypress verify",
|
|
29
|
-
"cy-run": "cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort}",
|
|
30
|
-
"cy-run-fl": "cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort} --spec ./cypress/e2e/form-level/form-level.cy.ts",
|
|
31
|
-
"cy-run-il": "cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort} --spec ./cypress/e2e/item-level/item-level.cy.ts",
|
|
32
|
-
"e2e": "ng e2e",
|
|
26
|
+
"unit-test": "npx ng test --watch=false",
|
|
27
|
+
"lint": "npx ng lint",
|
|
28
|
+
"cy:verify": "npx cypress verify",
|
|
29
|
+
"cy-run": "npx cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort}",
|
|
30
|
+
"cy-run-fl": "npx cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort} --spec ./cypress/e2e/form-level/form-level.cy.ts",
|
|
31
|
+
"cy-run-il": "npx cypress run --browser chrome --config baseUrl=http://localhost:${npm_package_config_testPort} --spec ./cypress/e2e/item-level/item-level.cy.ts",
|
|
32
|
+
"e2e": "npx ng e2e",
|
|
33
33
|
"e2e:start-server": "npm run build-with-test-html && angular-http-server --silent --path ./dist/formbuilder-lhcforms -p ${npm_package_config_testPort}",
|
|
34
|
-
"e2e:start-second-server": "npm run build-with-test-html && angular-http-server --silent --path ./dist/formbuilder-lhcforms -p ${npm_package_config_testPortSecond}",
|
|
34
|
+
"e2e:start-second-server": "npm run build-with-test-html && npx angular-http-server --silent --path ./dist/formbuilder-lhcforms -p ${npm_package_config_testPortSecond}",
|
|
35
35
|
"pw-run": "npx playwright test",
|
|
36
|
-
"e2e:pw-run": "start-test e2e:start-server http://localhost:${npm_package_config_testPort} e2e:start-second-server http://localhost:${npm_package_config_testPortSecond} pw-run",
|
|
37
|
-
"e2e:prod": "start-test e2e:start-server http://localhost:${npm_package_config_testPort} e2e:start-second-server http://localhost:${npm_package_config_testPortSecond} cy-pw-run",
|
|
38
|
-
"e2e:cy-run-fl": "start-test e2e:start-server http://localhost:${npm_package_config_testPort} cy-run-fl",
|
|
39
|
-
"e2e:cy-run-il": "start-test e2e:start-server http://localhost:${npm_package_config_testPort} cy-run-il",
|
|
36
|
+
"e2e:pw-run": "npx start-test e2e:start-server http://localhost:${npm_package_config_testPort} e2e:start-second-server http://localhost:${npm_package_config_testPortSecond} pw-run",
|
|
37
|
+
"e2e:prod": "npx start-test e2e:start-server http://localhost:${npm_package_config_testPort} e2e:start-second-server http://localhost:${npm_package_config_testPortSecond} cy-pw-run",
|
|
38
|
+
"e2e:cy-run-fl": "npx start-test e2e:start-server http://localhost:${npm_package_config_testPort} cy-run-fl",
|
|
39
|
+
"e2e:cy-run-il": "npx start-test e2e:start-server http://localhost:${npm_package_config_testPort} cy-run-il",
|
|
40
40
|
"cy-pw-run": "npm run cy-run && npm run pw-run"
|
|
41
41
|
},
|
|
42
42
|
"files": [
|