This makes it more clear what we are exporting to others. We should be careful on what we export publicly for consumption and which ones are exported to facilitate testing.
This commit is contained in:
Nick Chen 2017-06-13 22:12:07 -07:00
Родитель 4182744c4f
Коммит 64851ba6d4
4 изменённых файлов: 8 добавлений и 3 удалений

1
packages/.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1 @@
lerna-debug.json

Просмотреть файл

@ -11,7 +11,7 @@ const expandHomeDir = require('expand-home-dir');
const isWindows = process.platform.indexOf('win') === 0;
const JAVAC_FILENAME = 'javac' + (isWindows ? '.exe' : '');
interface RequirementsData {
export interface RequirementsData {
java_home: string;
}

Просмотреть файл

@ -6,6 +6,7 @@
"es6"
],
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"noImplicitAny": true,
"rootDir": ".",
@ -15,6 +16,7 @@
},
"exclude": [
"node_modules",
".vscode-test"
".vscode-test",
"dist"
]
}

Просмотреть файл

@ -6,6 +6,7 @@
"es6"
],
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"noImplicitAny": true,
"rootDir": ".",
@ -15,6 +16,7 @@
},
"exclude": [
"node_modules",
".vscode-test"
".vscode-test",
"dist"
]
}