Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ spec/
.coveralls.yml
.editorconfig
.idea
.travis.yml
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

15 changes: 9 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,14 @@ Want to be listed as a *Contributor*? Make a pull request with:
* Please keep code style consistent with surrounding code.

## Dev Setup
* Make sure you have [NodeJS v0.10](http://nodejs.org/) installed
* Run `npm install` from the project directory
* Make sure you have [NodeJS v16.x](https://nodejs.org/) installed
* Run `npm ci` from the project directory

## Linting
* Run `npm run lint` to run ESLint

## Testing
* (Local) Run `gulp test`. Make sure [Karma Local Config](karma.conf.js) has the browsers you want.
* (Any browser, remotely) If you have a [Sauce Labs](https://saucelabs.com) account, you can run `gulp test-ci`.
Make sure the target browser is enabled in [Karma CI Config](karma.conf.ci.js).
Otherwise, Travis will run all browsers if you submit a Pull Request.
* (Local) Run `npm test`. Make sure [Karma Local Config](karma.conf.js) has the browsers you want
* (Any browser, remotely) If you have a [Sauce Labs](https://saucelabs.com) account, you can run `npm run test-ci`
Make sure the target browser is enabled in [Karma CI Config](karma.conf.ci.js)
Otherwise, GitHub Actions will run all browsers if you submit a Pull Request.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
stackframe
==========
## JS Object representation of a stack frame
[![Build Status](https://img.shields.io/travis/stacktracejs/stackframe/master.svg?style=flat-square)](https://travis-ci.org/stacktracejs/stackframe)

![Build Status](https://img.shields.io/github/checks-status/stacktracejs/stackframe/master?style=flat-square)
[![Coverage Status](https://img.shields.io/coveralls/stacktracejs/stackframe.svg?style=flat-square)](https://coveralls.io/r/stacktracejs/stackframe?branch=master)
[![GitHub license](https://img.shields.io/github/license/stacktracejs/stackframe.svg?style=flat-square)](https://opensource.org/licenses/MIT)
[![dependencies](https://img.shields.io/badge/dependencies-0-green.svg?style=flat-square)](https://github.com/stacktracejs/stackframe/releases)
Expand Down