Skip to content
This repository has been archived by the owner on Oct 2, 2021. It is now read-only.

Commit

Permalink
Fix crdp build
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Oct 10, 2016
1 parent fd2ea7b commit 2c8d64e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.vscode/
src/
crdp/
test/
out/test
typings/
Expand Down
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const tsconfig = require('./tsconfig.json');
const sources = tsconfig.include;

const libs = [
'src'
'src',
'crdp'
].map(libFolder => libFolder + '/**/*.d.ts');

const lintSources = [
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "vscode-chrome-debug-core",
"displayName": "vscode-chrome-debug-core",
"version": "3.0.0",
"version": "3.0.1",
"description": "A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol",
"repository": {
"type": "git",
Expand All @@ -12,6 +12,7 @@
"typings": "./lib/src/index",
"main": "./out/src/index",
"dependencies": {
"@types/source-map": "^0.1.27",
"glob": "^7.0.6",
"request-light": "^0.1.0",
"noice-json-rpc": "^1.0.0",
Expand All @@ -26,7 +27,6 @@
"@types/mocha": "^2.2.32",
"@types/mockery": "^1.4.29",
"@types/node": "^6.0.40",
"@types/source-map": "^0.1.27",
"@types/ws": "0.0.32",
"del": "^2.2.2",
"chrome-remote-debug-protocol": "git://github.com/roblourens/chrome-remote-debug-protocol.git",
Expand Down

0 comments on commit 2c8d64e

Please sign in to comment.