Skip to content

Commit 163f1c0

Browse files
committed
chore: replace rollup with rollpkg
1 parent ba889c9 commit 163f1c0

File tree

3 files changed

+284
-210
lines changed

3 files changed

+284
-210
lines changed

packages/core/package.json

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
{
2-
"name": "tsky",
3-
"type": "module",
4-
"version": "0.1.0-alpha.0",
5-
"license": "MIT",
6-
"exports": {
7-
".": {
8-
"types": {
9-
"import": "./dist/index.d.ts",
10-
"require": "./dist/index.d.cts"
11-
},
12-
"import": "./dist/index.js",
13-
"require": "./dist/index.cjs"
14-
}
15-
},
16-
"main": "dist/index.cjs",
17-
"module": "dist/index.js",
18-
"types": "dist/index.d.ts",
19-
"files": ["dist"],
20-
"scripts": {
21-
"build": "rollup -c",
22-
"lint": "eslint ./src",
23-
"lint:fix": "eslint ./src --fix",
24-
"test": "echo \"Error: no test specified\"",
25-
"test:typescript": "tsc --noEmit"
26-
},
27-
"dependencies": {
28-
"@atproto/api": "^0.13.18"
29-
},
30-
"devDependencies": {
31-
"@rollup/plugin-commonjs": "^28.0.1",
32-
"@rollup/plugin-typescript": "^12.1.1",
33-
"globals": "^15.12.0",
34-
"rollup": "^4.27.4",
35-
"rollup-plugin-auto-external": "^2.0.0",
36-
"rollup-plugin-dts": "^6.1.1",
37-
"tsx": "^4.19.2",
38-
"typescript": "^5.7.2"
39-
}
40-
}
1+
{
2+
"name": "tsky",
3+
"type": "module",
4+
"version": "0.1.0-alpha.0",
5+
"license": "MIT",
6+
"exports": {
7+
".": {
8+
"import": {
9+
"types": "./dist/index.d.ts",
10+
"default": "./dist/index.js"
11+
},
12+
"require": {
13+
"types": "./dist/index.d.cts",
14+
"default": "./dist/index.cjs"
15+
}
16+
}
17+
},
18+
"main": "dist/index.cjs",
19+
"module": "dist/index.js",
20+
"types": "dist/index.d.ts",
21+
"files": [
22+
"dist"
23+
],
24+
"scripts": {
25+
"build": "pkgroll",
26+
"lint": "eslint ./src",
27+
"lint:fix": "eslint ./src --fix",
28+
"test": "echo \"Error: no test specified\"",
29+
"test:typescript": "tsc --noEmit"
30+
},
31+
"dependencies": {
32+
"@atproto/api": "^0.13.18"
33+
},
34+
"devDependencies": {
35+
"globals": "^15.12.0",
36+
"pkgroll": "^2.5.1",
37+
"tsx": "^4.19.2",
38+
"typescript": "^5.7.2"
39+
}
40+
}

packages/core/rollup.config.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)