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
We now have basic and `:integration` flavors of the common commands
`lint` and `test` as well as an `:all` flavor that will run everything.
We also now ensure that the types are built before running integration
tests as well as part of the packaging workflow via `prepack`.
"lint": "npm run lint-biome && npm run lint-publint",
34
+
"lint": "biome lint .",
35
+
"lint:integration": "npm run build; publint",
36
+
"lint:all": "npm run tsc; npm run lint; npm run lint:integration",
37
+
"prepack": "npm run build",
35
38
"test": "jest",
36
-
"test-integration": "npm run build-types; for x in commonjs esm typescript; do npm --prefix integration/$x install --omit=dev && npm --prefix integration/$x test; done;",
37
-
"test-all": "npm run check; npm run test; npm run test-integration"
39
+
"test:integration": "npm run build; for x in commonjs esm typescript; do npm --prefix integration/$x install --omit=dev && npm --prefix integration/$x test; done;",
40
+
"test:all": "npm run check; npm run test; npm run test:integration"
0 commit comments