Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jul 11, 2020
1 parent 62d0091 commit 2fd86ca
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 12 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ npm-debug.log*
/.pnp.js

# Build files
/.tmp
/dist

*.tgz
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@
"typescript": "^3.9.6"
},
"scripts": {
"clean": "rimraf dist .tmp node_modules",
"clean": "rimraf dist node_modules",
"compile": "tsc -p tsconfig.json --noEmit",
"start": "npm run watch",
"watch": "tsdx watch --noClean --name CytoscapeBubbleSets --format esm,umd",
"build": "npm run clean && tsdx build --name CytoscapeBubbleSets --format esm,umd && npm run typings",
"typings": "tsc -p tsconfig.dts.json && rollup -c rollup.dts.config.js",
"typings": "rollup -c rollup.dts.config.js",
"test": "tsdx test --passWithNoTests",
"test:watch": "tsdx test --passWithNoTests --watch",
"test:coverage": "tsdx test --passWithNoTests --coverage",
Expand Down
2 changes: 1 addition & 1 deletion rollup.dts.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import fs from 'fs';
const pkg = JSON.parse(fs.readFileSync('./package.json'));

export default {
input: './.tmp/index.d.ts',
input: './src/index.ts',
output: {
file: 'dist/index.d.ts',
format: 'es',
Expand Down
8 changes: 0 additions & 8 deletions tsconfig.dts.json

This file was deleted.

0 comments on commit 2fd86ca

Please sign in to comment.