Skip to content

Commit

Permalink
build: add compile step
Browse files Browse the repository at this point in the history
  • Loading branch information
laske185 committed Aug 23, 2023
1 parent 17634de commit 10b4d36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ jobs:
run: pnpm -r run depcheck
- name: Format
run: pnpm -r run format
- name: Compile
run: pnpm -r run compile
- name: Lint
run: pnpm -r run lint
- name: Test
Expand Down
1 change: 1 addition & 0 deletions packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"scripts": {
"build": "npm run test && npm run build:light",
"build:light": "npm run clear && mkdir doc && node scripts/transform.css.js && cross-env NODE_ENV=production stencil build --docs --prod && node scripts/hashing.js && node scripts/autogen.doc.js && node scripts/vaadin.js && npm run format -- -w",
"compile": "cross-env NODE_ENV=production stencil build --prod",
"clear": "rimraf dist doc loader www ../adapters/angular/v11/src ../adapters/angular/v12/src ../adapters/angular/v13/src ../adapters/angular/v14/src ../adapters/angular/v15/src ../adapters/angular/v16/src ../adapters/hydrate/dist ../adapters/react/src ../adapters/solid/src ../adapters/svelte/src ../adapters/vaadin/*.java ../adapters/vue/src",
"depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*,@public-ui/*,@stencil/*,eslint-*,postcss-windicss,tslib,workbox-build",
"format": "prettier --check src",
Expand Down
1 change: 1 addition & 0 deletions packages/schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
],
"scripts": {
"build": "unbuild",
"compile": "npm run build",
"depcheck": "depcheck --ignore-bin-package --skip-missing --ignores=@types/*",
"format": "prettier --check src",
"lint": "eslint src && tsc --noemit",
Expand Down

0 comments on commit 10b4d36

Please sign in to comment.