formbuilder-lhcforms 11.0.10 → 11.0.12
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 +16 -3
- package/dist/formbuilder-lhcforms/3rdpartylicenses.txt +6 -6
- package/dist/formbuilder-lhcforms/assets/version.json +1 -1
- package/dist/formbuilder-lhcforms/index.html +1 -1
- package/dist/formbuilder-lhcforms/main.008e957fec724ae8.js +1 -0
- package/package.json +29 -30
- package/dist/formbuilder-lhcforms/main.429f7fb31ea10175.js +0 -1
- package/dist/formbuilder-lhcforms/tests/window-open-test.html +0 -117
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "formbuilder-lhcforms",
|
|
3
|
-
"version": "11.0.
|
|
3
|
+
"version": "11.0.12",
|
|
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",
|
|
@@ -8,14 +8,9 @@
|
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/lhncbc/formbuilder-lhcforms"
|
|
10
10
|
},
|
|
11
|
-
"config": {
|
|
12
|
-
"testPortSecond": "9032",
|
|
13
|
-
"testPort": "9031",
|
|
14
|
-
"devPort": "9030"
|
|
15
|
-
},
|
|
16
11
|
"scripts": {
|
|
17
12
|
"ng": "npx ng",
|
|
18
|
-
"start": "npx ng serve --port $
|
|
13
|
+
"start": "dotenv -c -- sh -c 'npx ng serve --port \"$BASE_PORT\" -c development'",
|
|
19
14
|
"start-public": "node ./bin/start-public.js",
|
|
20
15
|
"install-and-build": "npm install && npm run clean-build",
|
|
21
16
|
"clean-build": "npx ng cache clean && npm ci && npm run build",
|
|
@@ -26,20 +21,23 @@
|
|
|
26
21
|
"unit-test": "npx ng test --watch=false | grep -v -E '^(chunk|spec-|Lazy chunk)'",
|
|
27
22
|
"lint": "npx ng lint",
|
|
28
23
|
"cy:verify": "npx cypress verify",
|
|
29
|
-
"cy-run": "npx cypress run --browser chrome --config baseUrl
|
|
30
|
-
"cy-run-log": "npx cypress run --env CYPRESS_LOG=log --browser chrome --config baseUrl
|
|
31
|
-
"cy-run-fl": "npx cypress run --browser chrome --config baseUrl
|
|
32
|
-
"cy-run-il": "npx cypress run --browser chrome --config baseUrl
|
|
24
|
+
"cy-run": "dotenv -c -- sh -c 'npx cypress run --browser chrome --config baseUrl=\"$TEST_BASE_URL\"'",
|
|
25
|
+
"cy-run-log": "dotenv -c -- sh -c 'npx cypress run --env CYPRESS_LOG=log --browser chrome --config baseUrl=\"$TEST_BASE_URL\"'",
|
|
26
|
+
"cy-run-fl": "dotenv -c -- sh -c 'npx cypress run --browser chrome --config baseUrl=\"$TEST_BASE_URL\" --spec ./cypress/e2e/form-level/form-level.cy.ts'",
|
|
27
|
+
"cy-run-il": "dotenv -c -- sh -c 'npx cypress run --browser chrome --config baseUrl=\"$TEST_BASE_URL\" --spec ./cypress/e2e/item-level/**/*.cy.ts'",
|
|
33
28
|
"e2e": "npx ng e2e",
|
|
34
|
-
"e2e:
|
|
35
|
-
"e2e:
|
|
36
|
-
"
|
|
37
|
-
"e2e:
|
|
38
|
-
"e2e:
|
|
39
|
-
"
|
|
40
|
-
"e2e:
|
|
41
|
-
"e2e:
|
|
42
|
-
"e2e:cy-run-
|
|
29
|
+
"e2e:serve": "dotenv -c -- sh -c 'angular-http-server --silent --path ./dist/formbuilder-lhcforms -p \"$TEST_PORT\"'",
|
|
30
|
+
"e2e:serve-second": "dotenv -c -- sh -c 'npx angular-http-server --silent --path ./dist/formbuilder-lhcforms -p \"$TEST_PORT_SECOND\"'",
|
|
31
|
+
"e2e:serve-both": "dotenv -c -- sh -c 'npx angular-http-server --silent --path ./dist/formbuilder-lhcforms -p $TEST_PORT & npx angular-http-server --silent --path ./dist/formbuilder-lhcforms -p $TEST_PORT_SECOND & wait'",
|
|
32
|
+
"e2e:start-server": "npm run build-with-test-html && npm run e2e:serve",
|
|
33
|
+
"e2e:start-second-server": "npm run build-with-test-html && npm run e2e:serve-second",
|
|
34
|
+
"pw-run": "dotenv -c -- npx playwright test",
|
|
35
|
+
"e2e:pw-run": "dotenv -c -- npm run build-with-test-html && dotenv -c -- sh -c 'npx start-test e2e:serve-both \"$TEST_BASE_URL|$TEST_BASE_URL_SECOND\" pw-run'",
|
|
36
|
+
"e2e:prod": "dotenv -c -- npm run build-with-test-html && dotenv -c -- sh -c 'npx start-test e2e:serve-both \"$TEST_BASE_URL|$TEST_BASE_URL_SECOND\" cy-pw-run'",
|
|
37
|
+
"e2e:cy-run-fl": "dotenv -c -- sh -c 'npx start-test e2e:start-server \"$TEST_BASE_URL\" cy-run-fl'",
|
|
38
|
+
"e2e:cy-run-il": "dotenv -c -- sh -c 'npx start-test e2e:start-server \"$TEST_BASE_URL\" cy-run-il'",
|
|
39
|
+
"e2e:cy-run": "dotenv -c -- sh -c 'npx start-test e2e:start-server \"$TEST_BASE_URL\" cy-run'",
|
|
40
|
+
"e2e:cy-run-log": "dotenv -c -- sh -c 'npx start-test e2e:start-server \"$TEST_BASE_URL\" cy-run-log'",
|
|
43
41
|
"cy-pw-run": "npm run pw-run && npm run cy-run"
|
|
44
42
|
},
|
|
45
43
|
"files": [
|
|
@@ -47,16 +45,16 @@
|
|
|
47
45
|
],
|
|
48
46
|
"dependencies": {
|
|
49
47
|
"@angular-builders/custom-webpack": "^20.0.0",
|
|
50
|
-
"@angular/animations": "~20.3.
|
|
48
|
+
"@angular/animations": "~20.3.18",
|
|
51
49
|
"@angular/cdk": "~20.2.14",
|
|
52
|
-
"@angular/common": "~20.3.
|
|
53
|
-
"@angular/compiler": "~20.3.
|
|
54
|
-
"@angular/core": "~20.3.
|
|
55
|
-
"@angular/forms": "~20.3.
|
|
56
|
-
"@angular/localize": "~20.3.
|
|
50
|
+
"@angular/common": "~20.3.18",
|
|
51
|
+
"@angular/compiler": "~20.3.18",
|
|
52
|
+
"@angular/core": "~20.3.18",
|
|
53
|
+
"@angular/forms": "~20.3.18",
|
|
54
|
+
"@angular/localize": "~20.3.18",
|
|
57
55
|
"@angular/material": "~20.2.14",
|
|
58
|
-
"@angular/platform-browser": "~20.3.
|
|
59
|
-
"@angular/router": "~20.3.
|
|
56
|
+
"@angular/platform-browser": "~20.3.18",
|
|
57
|
+
"@angular/router": "~20.3.18",
|
|
60
58
|
"@bugsplat/angular-tree-component": "^13.0.1",
|
|
61
59
|
"@ctrl/ngx-codemirror": "7.0.0",
|
|
62
60
|
"@fortawesome/angular-fontawesome": "^3.0.0",
|
|
@@ -98,8 +96,8 @@
|
|
|
98
96
|
"@angular-eslint/template-parser": "~20.7.0",
|
|
99
97
|
"@angular/build": "^20.3.13",
|
|
100
98
|
"@angular/cli": "~20.3.13",
|
|
101
|
-
"@angular/compiler-cli": "~20.3.
|
|
102
|
-
"@angular/language-service": "~20.3.
|
|
99
|
+
"@angular/compiler-cli": "~20.3.18",
|
|
100
|
+
"@angular/language-service": "~20.3.18",
|
|
103
101
|
"@cypress/schematic": "^2.5.1",
|
|
104
102
|
"@playwright/test": "^1.42.1",
|
|
105
103
|
"@types/hapi": "18.0.8",
|
|
@@ -115,6 +113,7 @@
|
|
|
115
113
|
"cypress-fail-on-console-error": "^5.1.1",
|
|
116
114
|
"cypress-real-events": "^1.14.0",
|
|
117
115
|
"cypress-terminal-report": "^7.1.0",
|
|
116
|
+
"dotenv-cli": "^7.4.2",
|
|
118
117
|
"eslint": "^8.57.0",
|
|
119
118
|
"jasmine-core": "^5.8.0",
|
|
120
119
|
"jasmine-spec-reporter": "~7.0.0",
|