Skip to content

Commit 8386769

Browse files
committed
1.5.0
1 parent bb3fe66 commit 8386769

File tree

2 files changed

+22
-14
lines changed

2 files changed

+22
-14
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# assert change log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
This project adheres to [Semantic Versioning](http://semver.org/).
6+
7+
## 1.5.0
8+
* Add strict mode APIs. ([@lukechilds](https://github.com/lukechilds) in [#41](https://github.com/browserify/commonjs-assert/pull/41))

package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,7 @@
11
{
22
"name": "assert",
33
"description": "The node.js assert module, re-packaged for web browsers.",
4-
"keywords": [
5-
"assert",
6-
"browser"
7-
],
8-
"version": "1.4.1",
9-
"homepage": "https://github.com/browserify/commonjs-assert",
10-
"repository": {
11-
"type": "git",
12-
"url": "git://github.com/browserify/commonjs-assert.git"
13-
},
14-
"main": "./assert.js",
4+
"version": "1.5.0",
155
"dependencies": {
166
"object-assign": "^4.1.1",
177
"util": "0.10.3"
@@ -21,12 +11,22 @@
2111
"zuul": "~3.10.0",
2212
"zuul-ngrok": "^4.0.0"
2313
},
14+
"homepage": "https://github.com/browserify/commonjs-assert",
15+
"keywords": [
16+
"assert",
17+
"browser"
18+
],
2419
"license": "MIT",
20+
"main": "./assert.js",
21+
"repository": {
22+
"type": "git",
23+
"url": "git://github.com/browserify/commonjs-assert.git"
24+
},
2525
"scripts": {
26-
"test-node": "mocha --ui qunit test.js",
27-
"test-browser": "zuul -- test.js",
26+
"browser-local": "zuul --no-coverage --local 8000 -- test.js",
2827
"test": "npm run test-node && npm run test-browser",
28+
"test-browser": "zuul -- test.js",
2929
"test-native": "TEST_NATIVE=true mocha --ui qunit test.js",
30-
"browser-local": "zuul --no-coverage --local 8000 -- test.js"
30+
"test-node": "mocha --ui qunit test.js"
3131
}
3232
}

0 commit comments

Comments
 (0)