Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.

Commit

Permalink
fix: upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Apr 1, 2020
1 parent dda9ffd commit c19e8fb
Show file tree
Hide file tree
Showing 4 changed files with 887 additions and 1,383 deletions.
6 changes: 3 additions & 3 deletions build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { copySync } from 'fs-extra';
import { copyFileSync } from 'fs';
import { ngPackagr } from 'ng-packagr';
import { join } from 'path';

Expand All @@ -9,8 +9,8 @@ async function main() {
.build();

// copy everything else
copySync('README.md', join(process.cwd(), 'dist/README.md'));
copySync('LICENSE', join(process.cwd(), 'dist/LICENSE'));
copyFileSync('README.md', join(process.cwd(), 'dist/README.md'));
copyFileSync('LICENSE', join(process.cwd(), 'dist/LICENSE'));
}

main()
Expand Down
11 changes: 3 additions & 8 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,9 @@ jobs:
CHROME_BIN: '/usr/bin/google-chrome'
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run:
name: npm-install
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ./node_modules
- run:
name: test
command: npm run test:ci
Expand All @@ -25,13 +19,14 @@ jobs:
- run:
name: codecov
command: bash <(curl -s https://codecov.io/bash)
- run:
name: ghpages
command: npm run ghpages
release:
docker:
- image: circleci/node:12
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm install
- run: npm run build
- run: npm run semantic-release
Expand Down
Loading

0 comments on commit c19e8fb

Please sign in to comment.