Skip to content

Commit 3114d78

Browse files
authored
Merge pull request #72 from exceptionless/feature/latest-ts
Updated to latest typescript
2 parents cba1682 + 1515aee commit 3114d78

File tree

81 files changed

+6529
-5950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+6529
-5950
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ node_modules
44
jspm_packages
55
public
66
/dist/temp
7-
/src/typings
87
example/exceptionless.js

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -248,21 +248,19 @@ If you find a bug or want to contribute a feature, feel free to create a pull re
248248
3. Install [tsd](https://github.com/DefinitelyTyped/tsd) and [gulp](http://gulpjs.com) and the development dependencies using [npm](https://www.npmjs.com).
249249

250250
```sh
251-
npm install -g tsd
252-
npm install -g gulp
253251
npm install
254252
```
255253

256254
4. Build the project by running the following gulp command.
257255

258256
```sh
259-
gulp build
257+
npm run build
260258
```
261259

262260
5. Test the project by running the following gulp command.
263261

264262
```sh
265-
gulp test
263+
npm run test
266264
```
267265

268266
During development, you can use relative paths to require Exceptionless, e.g. `require('./dist/exceptionless.node.js')` when you are running Node.js from the git root directory.

appveyor.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ version: 1.4.{build}
22

33
install:
44
- ps: Install-Product node 5
5-
- npm install -g tsd
65
- npm install -g gulp
76
- npm install -g bower
87
- npm install

0 commit comments

Comments
 (0)