Skip to content

Commit

Permalink
cleanup, remove gulp
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed Apr 12, 2019
1 parent a616aab commit 681efad
Show file tree
Hide file tree
Showing 7 changed files with 393 additions and 2,465 deletions.
12 changes: 0 additions & 12 deletions .eslintrc

This file was deleted.

6 changes: 2 additions & 4 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ typings/
test
out/test/
.gitignore
gulpfile.js
jsconfig.json
tsconfig.json
tsd.json
*.js.map
yarn.lock
typings.json
tslint.json
.eslintrc
.travis.yml
.vscode/
out/**/*.d.ts
!out/api.d.ts
63 changes: 0 additions & 63 deletions gulpfile.js

This file was deleted.

21 changes: 7 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
"vsce": "out/vsce"
},
"scripts": {
"watch": "gulp watch",
"watch-test": "gulp watch-test",
"test": "gulp compile && mocha",
"prepublishOnly": "gulp compile && mocha"
"compile": "tsc",
"watch": "tsc --watch",
"watch-test": "concurrently \"tsc --watch\" \"mocha --watch\"",
"test": "mocha",
"prepublishOnly": "tsc && mocha"
},
"engines": {
"node": ">= 8"
Expand Down Expand Up @@ -56,19 +57,11 @@
"@types/cheerio": "^0.22.1",
"@types/markdown-it": "0.0.2",
"@types/node": "^8",
"eslint": "^3.17.1",
"event-stream": "3.3.4",
"gulp": "^3.9.0",
"gulp-filter": "^4.0.0",
"gulp-sourcemaps": "^2.4.1",
"concurrently": "^4.1.0",
"gulp-tsb": "^1.6.0",
"gulp-tslint": "^6.1.1",
"gulp-typescript": "^3.1.5",
"mocha": "^5.2.0",
"rimraf": "^2.4.3",
"source-map-support": "^0.4.2",
"tslint": "^3.15.1",
"typescript": "^2.2.1",
"xml2js": "^0.4.12"
}
}
}
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"declaration": true
"declaration": true,
"outDir": "out"
},
"exclude": [
"node_modules",
"out"
"include": [
"src",
"typings"
]
}
16 changes: 0 additions & 16 deletions tslint.json

This file was deleted.

0 comments on commit 681efad

Please sign in to comment.