Skip to content

Commit

Permalink
include conf folder
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitf committed Mar 19, 2019
1 parent 94957ed commit 84ebb00
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
File renamed without changes.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},
"files": [
"src",
"conf",
"lib"
],
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/grab-theia-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class GrabTheiaVersions {
const url = GrabTheiaVersions.THEIA_URL_PATTERN.replace('${VERSION}', version);
const content = await this.content.get(url);
await fs.writeFile(filePath, content);
const paths = [path.resolve('vscode-theia.d.ts'), filePath];
const paths = [path.resolve('conf', 'vscode-theia.d.ts'), filePath];
const entry: ScannerEntry = { paths, version };
return entry;
}));
Expand Down

0 comments on commit 84ebb00

Please sign in to comment.