Skip to content

Commit

Permalink
feat(build): use common build process
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomaash committed Feb 28, 2020
1 parent dd3e342 commit 6980a9c
Show file tree
Hide file tree
Showing 16 changed files with 5,861 additions and 2,224 deletions.
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,10 @@ jobs:
- persist_to_workspace:
root: .
paths:
- 'esm'
- 'index.d.ts'
- 'index.js'
- 'types'
- 'umd'
- 'declarations'
- 'esnext'
- 'peer'
- 'standalone'

lint:
executor: node
Expand Down
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
.nyc_output
/.stryker-tmp/
/esm/
/declarations/
/esnext/
/index.d.ts
/index.js
/peer/
/reports/
/types/
/umd/
/standalone/
coverage
node_modules
vis-util-*.tgz
2 changes: 1 addition & 1 deletion .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extension": ["ts", "js"],
"require": ["./babel.mocha.js"],
"require": ["vis-dev-utils/babel-register"],
"spec": ["./test/**/*.test.js", "./test/**/*.test.ts"]
}
4 changes: 4 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
exclude: require("vis-dev-utils").BABEL_IGNORE_RE,
presets: [["vis-dev-utils/babel-preset", { ts: true }]]
};
3 changes: 0 additions & 3 deletions babel.mocha.js

This file was deleted.

Loading

0 comments on commit 6980a9c

Please sign in to comment.