Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
Release 13.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed Dec 27, 2017
1 parent bcf4588 commit 7095ae5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
5 changes: 5 additions & 0 deletions History.md
@@ -1,3 +1,8 @@
13.2.0 / 2017-12-27
===================

* Update type adaptors to allow to use Set as iterable everywhere

13.1.3 / 2017-10-28
===================

Expand Down
30 changes: 16 additions & 14 deletions package.json
@@ -1,24 +1,31 @@
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "13.1.3",
"author": "TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>",
"version": "13.2.0",
"author":
"TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>",
"typings": "./should.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/shouldjs/should.js.git"
},
"homepage": "https://github.com/shouldjs/should.js",
"scripts": {
"build:cjs": "rollup --output.format=cjs --output.file=cjs/should.js lib/index.js",
"build:es6": "rollup --output.format=es --output.file=es6/should.js lib/index.js",
"build:cjs":
"rollup --output.format=cjs --output.file=cjs/should.js lib/index.js",
"build:es6":
"rollup --output.format=es --output.file=es6/should.js lib/index.js",
"build": "npm run build:cjs && npm run build:es6",
"prepare": "npm run build && npm run build:umd && npm run build:cjs:as-function",
"prepare":
"npm run build && npm run build:umd && npm run build:cjs:as-function",
"pretest": "npm run build",
"build:cjs:as-function": "rollup --input ./lib/should.js --output.format=cjs --output.file ./as-function.js",
"test": "mocha -R mocha-better-spec-reporter --require ./cjs/should --color --check-leaks ./test/*.test.js ./test/**/*.test.js",
"build:cjs:as-function":
"rollup --input ./lib/should.js --output.format=cjs --output.file ./as-function.js",
"test":
"mocha -R mocha-better-spec-reporter --require ./cjs/should --color --check-leaks ./test/*.test.js ./test/**/*.test.js",
"zuul": "zuul -- ./test/**/*.test.js ./test/*.test.js",
"build:umd": "rollup -c rollup.config.js --input ./lib/umd.js --output.format=iife --output.file ./should.js"
"build:umd":
"rollup -c rollup.config.js --input ./lib/umd.js --output.format=iife --output.file ./should.js"
},
"devDependencies": {
"bluebird": "^3.5.1",
Expand All @@ -33,12 +40,7 @@
"typescript": "^2.5.3",
"zuul": "latest"
},
"keywords": [
"test",
"bdd",
"assert",
"should"
],
"keywords": ["test", "bdd", "assert", "should"],
"main": "./cjs/should.js",
"module": "./es6/should.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion should.js
@@ -1,6 +1,6 @@
/*!
* should - test framework agnostic BDD-style assertions
* @version v13.1.3
* @version v13.2.0
* @author TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>
* @link https://github.com/shouldjs/should.js
* @license MIT
Expand Down

0 comments on commit 7095ae5

Please sign in to comment.