Skip to content

Commit

Permalink
Merge pull request #990 from realityking/excise-coffeescript-1
Browse files Browse the repository at this point in the history
Remove some more usage of coffeescript
  • Loading branch information
honzajavorek committed Mar 22, 2018
2 parents d9813da + 5ea18d4 commit 9797aa5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/usage-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ numbers accumulated throughout the Dredd run.

### Configuration Object for Dredd Class

Let's have a look at an example configuration first. (Please also see [options source](https://github.com/apiaryio/dredd/blob/master/src/options.coffee) to read detailed information about the `options` attributes).
Let's have a look at an example configuration first. (Please also see [options source](https://github.com/apiaryio/dredd/blob/master/src/options.js) to read detailed information about the `options` attributes).

```javascript
{
Expand Down
4 changes: 2 additions & 2 deletions scripts/semantic-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ SEMANTIC_RELEASE=./node_modules/.bin/semantic-release


add_stable_dist_tag() {
PACKAGE_NAME=$(coffee -e 'console.log(require("./package.json").name)')
PACKAGE_VERSION=$(coffee -e 'console.log(require("./package.json").version)')
PACKAGE_NAME=$(node -e 'console.log(require("./package.json").name)')
PACKAGE_VERSION=$(node -e 'console.log(require("./package.json").version)')

npm dist-tag add "$PACKAGE_NAME@$PACKAGE_VERSION" stable
return $?
Expand Down
1 change: 0 additions & 1 deletion test/mocha.opts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
--compilers=coffee:coffeescript/register
--reporter=test/reporter.js
--timeout=120000
--recursive

0 comments on commit 9797aa5

Please sign in to comment.