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 166e9f3 commit dfdfd85
Show file tree
Hide file tree
Showing 4 changed files with 925 additions and 1,437 deletions.
8 changes: 4 additions & 4 deletions build.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { copySync } from 'fs-extra';
import { build } from 'ng-packagr';
import { copyFileSync } from 'fs';
import { join } from 'path';
import { build } from 'ng-packagr';

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

// 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
8 changes: 0 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 ci
- save_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
paths:
- ~/.npm
- run:
name: test
command: npm run test:ci
Expand All @@ -36,8 +30,6 @@ jobs:
- image: circleci/node:12
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package-lock.json" }}
- run: npm ci
- run: npm run build
- run: npm run semantic-release
Expand Down
Loading

0 comments on commit dfdfd85

Please sign in to comment.