Daniel Starns
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
0 deletions
-
.github/workflows/quality.yml
-
package.json
-
packages/core/package.json
|
|
|
@ -11,6 +11,8 @@ jobs: |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v4 |
|
|
|
- uses: ./.github/actions/setup-project |
|
|
|
- name: TS Check |
|
|
|
run: pnpm ts:check |
|
|
|
- name: Lint |
|
|
|
run: pnpm lint |
|
|
|
- name: Format Check |
|
|
|
|
|
|
|
@ -9,6 +9,7 @@ |
|
|
|
"docs:api": "pnpm --filter @grapesjs/docs docs:api", |
|
|
|
"lint": "eslint .", |
|
|
|
"build": "pnpm --filter \"!@grapesjs/docs\" build", |
|
|
|
"ts:check": "pnpm --filter grapesjs ts:check", |
|
|
|
"clean": "find . -type d \\( -name \"node_modules\" -o -name \"build\" -o -name \"dist\" \\) -exec rm -rf {} + && rm ./pnpm-lock.yaml", |
|
|
|
"format": "prettier . --write", |
|
|
|
"format:check": "prettier . --check" |
|
|
|
|
|
|
|
@ -71,6 +71,7 @@ |
|
|
|
"build:mjs": "BUILD_MODULE=true grapesjs-cli build --dts='skip' --patch=false --targets=\"> 1%, ie 11, safari 8, not dead\"", |
|
|
|
"build:css": "sass src/styles/scss/main.scss dist/css/grapes.min.css --no-source-map --style=compressed --load-path=node_modules", |
|
|
|
"ts:build": "grapesjs-cli build --dts='only' --patch=false", |
|
|
|
"ts:check": "tsc --noEmit --esModuleInterop dist/index.d.ts", |
|
|
|
"start": "run-p start:*", |
|
|
|
"start:js": "grapesjs-cli serve", |
|
|
|
"start:css": "npm run build:css -- --watch", |
|
|
|
|