Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JamieMason/Jasmine-Matchers
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.0.2
Choose a base ref
...
head repository: JamieMason/Jasmine-Matchers
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.0.3
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jul 22, 2019

  1. Copy the full SHA
    0a0e5d1 View commit details
  2. chore(release): 4.0.3

    JamieMason committed Jul 22, 2019
    Copy the full SHA
    304e038 View commit details
Showing with 456 additions and 382 deletions.
  1. +7 −0 CHANGELOG.md
  2. +15 −12 package.json
  3. +434 −370 yarn.lock
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [4.0.3](https://github.com/JamieMason/Jasmine-Matchers/compare/4.0.2...4.0.3) (2019-07-22)

### Bug Fixes

- **npm:** update dependencies
([0a0e5d1](https://github.com/JamieMason/Jasmine-Matchers/commit/0a0e5d1))

## [4.0.2](https://github.com/JamieMason/Jasmine-Matchers/compare/4.0.1...4.0.2) (2019-06-18)

### Bug Fixes
27 changes: 15 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jasmine-expect",
"description": "Write Beautiful Specs with Custom Matchers",
"version": "4.0.2",
"version": "4.0.3",
"author": "Jamie Mason <jamie@foldleft.io> (https://github.com/JamieMason)",
"bugs": "https://github.com/JamieMason/Jasmine-Matchers/issues",
"contributors": [
@@ -29,29 +29,29 @@
},
"devDependencies": {
"@types/jest": "24.0.15",
"@types/node": "12.0.8",
"@types/node": "12.6.8",
"codeclimate-test-reporter": "0.5.1",
"globby": "9.2.0",
"globby": "10.0.1",
"jasmine-core": "3.4.0",
"jest": "24.8.0",
"karma": "4.1.0",
"karma": "4.2.0",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "2.2.0",
"karma-chrome-launcher": "3.0.0",
"karma-cli": "2.0.0",
"karma-coverage": "1.1.2",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "2.0.1",
"karma-nested-reporter": "0.1.6",
"karma-nested-reporter": "0.1.7",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"saucelabs": "2.1.9",
"saucelabs": "2.3.0",
"ts-jest": "24.0.2",
"ts-loader": "6.0.3",
"tslint": "5.17.0",
"typescript": "3.5.2",
"webpack": "4.34.0",
"webpack-cli": "3.3.4"
"ts-loader": "6.0.4",
"tslint": "5.18.0",
"typescript": "3.5.3",
"webpack": "4.36.1",
"webpack-cli": "3.3.6"
},
"homepage": "https://github.com/JamieMason/Jasmine-Matchers",
"keywords": [
@@ -68,6 +68,9 @@
"license": "MIT",
"main": "src/index.js",
"repository": "JamieMason/Jasmine-Matchers",
"resolutions": {
"lodash": ">=4.17.15"
},
"scripts": {
"browserstack:android": "# karma start karma/browserstack-android.conf.js",
"browserstack:chrome": "karma start karma/browserstack-chrome.conf.js",
Loading