Skip to content

Commit 546528b

Browse files
feat: packages include both cjs/esm builds (#4)
1 parent 112eed6 commit 546528b

File tree

7 files changed

+632
-224
lines changed

7 files changed

+632
-224
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ typings/
6060
# next.js build output
6161
.next
6262

63-
dist
63+
dist
64+
.rpt2_cache

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"editor.tabSize": 2,
3-
"typescript.tsdk": "node_modules/typescript/lib"
3+
"typescript.tsdk": "node_modules/typescript/lib",
4+
"files.exclude": {
5+
".rpt2_cache": true
6+
}
47
}

circle.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
defaults: &defaults
22
docker:
3-
- image: circleci/node:11.5-browsers
3+
- image: circleci/node:11.6
44

55
version: 2
66
jobs:
@@ -21,8 +21,8 @@ jobs:
2121
name: Lint
2222
command: npm run lint
2323
- run:
24-
name: Dist
25-
command: npm run dist
24+
name: Rollup
25+
command: npm run rollup
2626
- persist_to_workspace:
2727
root: .
2828
paths:

0 commit comments

Comments
 (0)