chore: remove build:css from prepack command

This commit is contained in:
Eric Liu 2022-04-02 16:51:01 -07:00
commit de13557477
2 changed files with 3 additions and 7 deletions

View file

@ -3,8 +3,7 @@ name: CI
on: on:
pull_request: pull_request:
push: push:
branches: branches: [master]
- master
jobs: jobs:
build: build:
@ -22,6 +21,4 @@ jobs:
run: | run: |
yarn yarn
yarn build:lib yarn build:lib
yarn test:types
- name: Run unit tests and validate TypeScript definitions
run: yarn test

View file

@ -11,12 +11,11 @@
"css/*.css" "css/*.css"
], ],
"scripts": { "scripts": {
"test": "run-p test:*",
"test:types": "svelte-check --workspace tests", "test:types": "svelte-check --workspace tests",
"build:css": "node scripts/build-css", "build:css": "node scripts/build-css",
"build:docs": "node scripts/build-docs", "build:docs": "node scripts/build-docs",
"build:lib": "rollup -c", "build:lib": "rollup -c",
"prepack": "run-p build:*", "prepack": "yarn build:docs & yarn build:lib",
"format": "prettier --write \"./**/*.{svelte,js,md}\"" "format": "prettier --write \"./**/*.{svelte,js,md}\""
}, },
"dependencies": { "dependencies": {