Skip to content

Commit

Permalink
fix(deps): Move build dependencies to non-dev dependencies (#1107)
Browse files Browse the repository at this point in the history
The following dependencies are required to build with bob:
- clipboard
- css-loader
- css-minimizer-webpack-plugin
- mini-css-extract-plugin
- path-browserify
  • Loading branch information
queengooborg authored Feb 24, 2023
1 parent 764f099 commit 0b03a8f
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 295 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,10 @@ jobs:
with:
node-version: 18
- name: Install dependencies
run: |
npm install
run: npm ci
- name: Build bob
run: |
npm run build
run: npm run build
- name: Install developer dependencies
run: npm i
- name: Run tests
run: |
npm run test
run: npm run test
Loading

0 comments on commit 0b03a8f

Please sign in to comment.