Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

history

Package Overview
Dependencies
Maintainers
2
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

history - npm Package Compare versions

Comparing version 1.12.3 to 1.12.4

npm-scripts/postinstall.js

10

CHANGES.md
## HEAD
- Fix npm postinstall hook on Windows (see [#62])
[#62]: https://github.com/rackt/history/issues/62
## [v1.12.3]
> Oct 7, 2015
- Fix listenBefore hooks not being called unless a listen hook was also registered (see [#71])
- Add a warning when we cannot save state in Safari private mode (see [#42])
[v1.12.3]: https://github.com/rackt/history/compare/v1.12.2...v1.12.3
[#71]: https://github.com/rackt/history/issues/71

@@ -14,4 +22,4 @@ [#42]: https://github.com/rackt/history/issues/42

[v1.12.2]: https://github.com/rackt/history/compare/v1.12.1...v1.12.2
[#51-comments]: https://github.com/rackt/history/pull/51#issuecomment-143189672
[v1.12.2]: https://github.com/rackt/history/compare/v1.12.1...v1.12.2

@@ -18,0 +26,0 @@ ## [v1.12.1]

2

lib/DOMStateStorage.js

@@ -0,1 +1,2 @@

/*eslint-disable no-empty */
'use strict';

@@ -13,3 +14,2 @@

/*eslint-disable no-empty */
var KeyPrefix = '@@History/';

@@ -16,0 +16,0 @@ var QuotaExceededError = 'QuotaExceededError';

@@ -0,4 +1,4 @@

/*eslint-disable no-empty */
import warning from 'warning'
/*eslint-disable no-empty */
const KeyPrefix = '@@History/'

@@ -5,0 +5,0 @@ const QuotaExceededError = 'QuotaExceededError'

{
"name": "history",
"version": "1.12.3",
"version": "1.12.4",
"description": "A minimal, functional history implementation for JavaScript",

@@ -15,7 +15,6 @@ "main": "lib/index",

"build-min": "NODE_ENV=production webpack -p modules/index.js umd/History.min.js",
"lint": "eslint modules",
"start": "webpack-dev-server -d --content-base ./ --history-api-fallback --inline modules/index.js",
"test": "npm run lint && karma start",
"lint": "eslint modules",
"postinstall": "node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build",
"prepublish": "npm run build"
"postinstall": "node npm-scripts/postinstall.js"
},

@@ -41,2 +40,3 @@ "authors": [

"expect": "^1.12.0",
"gzip-size": "^3.0.0",
"karma": "^0.13.3",

@@ -51,2 +51,3 @@ "karma-browserstack-launcher": "^0.1.3",

"mocha": "^2.0.1",
"pretty-bytes": "^2.0.1",
"rimraf": "^2.4.2",

@@ -53,0 +54,0 @@ "webpack": "^1.4.13",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc