File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " amogus-driver" ,
3
- "version" : " 1.2.4 " ,
3
+ "version" : " 1.2.5 " ,
4
4
"description" : " AMOGUS wire protocol implementation for TypeScript" ,
5
5
"main" : " dist/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change 1
1
import typescript from 'rollup-plugin-typescript2'
2
2
3
3
export default [
4
+ // main lib
4
5
{
5
6
input : './src/index.ts' ,
6
7
output : {
@@ -9,6 +10,8 @@ export default [
9
10
} ,
10
11
plugins : [ typescript ( { tsconfig : './cfg/buildconfig.json' } ) ] ,
11
12
} ,
13
+
14
+ // node transport
12
15
{
13
16
input : './src/transport/node.ts' ,
14
17
output : {
@@ -18,6 +21,8 @@ export default [
18
21
plugins : [ typescript ( { tsconfig : './cfg/buildconfig.node.json' } ) ] ,
19
22
external : [ 'tls' , '../index' , './universal' ]
20
23
} ,
24
+
25
+ // universal transport
21
26
{
22
27
input : './src/transport/universal.ts' ,
23
28
output : {
You can’t perform that action at this time.
0 commit comments