Skip to content

Commit dd90a90

Browse files
committed
Fix minor packaging issues in automation lib
1 parent 6d9a949 commit dd90a90

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

test/automation/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ node_modules/
55
out/
66
keybindings.*.json
77
src/driver.d.ts
8+
*.tgz

test/automation/.npmignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
!/out
2+
/src
3+
/tools
4+
.gitignore
5+
tsconfig.json
6+
*.tgz

test/automation/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"main": "./out/index.js",
1010
"private": true,
1111
"scripts": {
12-
"postinstall": "npm run compile",
1312
"compile": "npm run copy-driver && npm run copy-driver-definition && tsc",
1413
"watch": "concurrently \"npm run watch-driver\" \"npm run watch-driver-definition\" \"tsc --watch\"",
1514
"copy-driver": "cpx src/driver.js out/",

test/automation/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ export * from './statusbar';
2424
export * from './terminal';
2525
export * from './viewlet';
2626
export * from './workbench';
27-
export * from '../src/driver';
27+
export * from './driver';

0 commit comments

Comments
 (0)