Skip to content

Commit e0f3d11

Browse files
author
Anna Antonenko
committed
fix: tidy up config
1 parent 896c50e commit e0f3d11

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "amogus-driver",
3-
"version": "1.2.4",
3+
"version": "1.2.5",
44
"description": "AMOGUS wire protocol implementation for TypeScript",
55
"main": "dist/index.js",
66
"scripts": {

rollup.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import typescript from 'rollup-plugin-typescript2'
22

33
export default [
4+
// main lib
45
{
56
input: './src/index.ts',
67
output: {
@@ -9,6 +10,8 @@ export default [
910
},
1011
plugins: [typescript({ tsconfig: './cfg/buildconfig.json' })],
1112
},
13+
14+
// node transport
1215
{
1316
input: './src/transport/node.ts',
1417
output: {
@@ -18,6 +21,8 @@ export default [
1821
plugins: [typescript({ tsconfig: './cfg/buildconfig.node.json' })],
1922
external: ['tls', '../index', './universal']
2023
},
24+
25+
// universal transport
2126
{
2227
input: './src/transport/universal.ts',
2328
output: {

0 commit comments

Comments
 (0)