You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"build-app": "npm run build:attribute && npm run build:dot-syntax && npm run build:event && npm run build:children && npm run build:binding && npm run build:when && npm run build:ref && npm run build:repeat && npm run build:observer-map && npm run build:slotted && npm run build:lifecycle-callbacks",
39
-
"build-server": "tsc -b server",
40
-
"doc": "api-extractor run --local",
24
+
"build:tsc": "tsc -p ./tsconfig.json",
25
+
"build": "npm run build:tsc && npm run doc",
26
+
"clean": "rimraf dist temp test-results",
27
+
"dev:full": "concurrently -k -n fast-element,fast-html,server \"npm run dev --workspace=@microsoft/fast-element\"\"npm:watch\"\"npm:test-server\"",
28
+
"dev": "concurrently -k -n tsc,server \"npm run watch\"\"npm run test-server\"",
41
29
"doc:ci": "api-extractor run",
30
+
"doc": "npm run doc:ci -- --local",
31
+
"eslint:fix": "npm run eslint -- --fix",
42
32
"eslint": "eslint . --ext .ts",
43
-
"eslint:fix": "eslint . --ext .ts --fix",
33
+
"install-playwright-browsers": "npm run playwright install",
44
34
"prepublishOnly": "npm run clean && npm run build",
45
-
"pretest": "npm run build && npm run build-server",
"test": "npm run build-app && playwright test && npm run test:rules",
49
-
"test-server": "node server/dist/server.js",
37
+
"test-server": "npx vite test/ --clearScreen false",
38
+
"test:playwright": "playwright test",
50
39
"test:rules": "sg test --skip-snapshot-tests",
51
-
"install-playwright-browsers": "npm run playwright install",
52
-
"dev": "npm run build && npm run build-app && npm run build-server && npm run test-server"
40
+
"test": "npm run test:playwright && npm run test:rules",
41
+
"test:ui": "concurrently -k -n fast-element,fast-html,playwright \"npm run dev --workspace=@microsoft/fast-element\"\"npm:watch\"\"npx playwright test --ui\"",
42
+
"watch": "npm run build:tsc -- -w --preserveWatchOutput"
53
43
},
54
44
"description": "A package for facilitating rendering FAST Web Components in a non-browser environment.",
0 commit comments