New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@brightcove/typed-immutable-extensions

Package Overview
Dependencies
Maintainers
146
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brightcove/typed-immutable-extensions - npm Package Compare versions

Comparing version

to
0.1.7

49

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.

@@ -9,20 +10,37 @@

## [0.1.2] - 2018-08-16
## [0.1.7] - 2020-10-08
### Fixed
- Updated dependencies to fix vulnerabilities
## Fixed
## [0.1.6] - 2020-04-06
### Fixed
- Updated package-lock.json to fix vulnerabilities
- Fixed `Typed.typeName` specifiers for `Maybe`, `Enum` and `Discriminator`
## [0.1.5] - 2020-02-18
### Fixed
- Updated mocha and nyc libraries to fix vulnerabilities
## [0.1.4] - 2019-08-29
### Fixed
- Updated eslint and mocha library to fix vulnerabilities
## [0.1.3] - 2019-07-18
### Added
- Added automated deploys of new versions
### Fixed
- Updated mocha library to fix vulnerabilities
## [0.1.2] - 2018-08-16
### Changed
- Moved logic for `Maybe`, `Enum`, and `Discriminator` into separate classes which expose some typing information
### Removed
- jsdoc, we are now only using jsdoc-to-markdown
### Fixed
- Fixed `Typed.typeName` specifiers for `Maybe`, `Enum` and `Discriminator`
## [0.1.1] - 2018-08-13
### Added
- `prepublishOnly` task to build the library

@@ -32,15 +50,20 @@ - `files` specifier in `package.json` to restrict which files are packaged

### Changed
- Changed API and CONTRIBUTING URLs in README to be absolute URLs
### Removed
- `lib` from git repo
## [0.1.0] - 2018-08-13
## 0.1.0 - 2018-08-13
### Added
- `Maybe`, `Enum`, and `Discriminator` types
- `extends` function for extending Records
- API documentation with jsdoc and jsdoc-to-markdown
- API documentation with jsdoc and jsdoc-to-markdown
[Unreleased]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.7...HEAD
[0.1.7]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.6...v0.1.7
[0.1.6]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.5...v0.1.6
[0.1.5]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.4...v0.1.5
[0.1.4]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.3...v0.1.4
[0.1.3]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.2...v0.1.3
[0.1.2]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/brightcove/typed-immutable-extensions/compare/v0.1.0...v0.1.1
{
"name": "@brightcove/typed-immutable-extensions",
"version": "0.1.2",
"version": "0.1.7",
"description": "Extensions on top of typed-immutable to make it better",

@@ -11,6 +11,10 @@ "main": "lib/index.js",

"test": "nyc --reporter html --reporter text mocha",
"posttest": "kacl lint",
"report": "nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint src test",
"jsdoc": "jsdoc2md --files src/index.js > docs/API.md",
"prepublishOnly": "npm run build"
"prepublishOnly": "npm run build",
"preversion": "kacl prerelease",
"version": "kacl release && git add CHANGELOG.md",
"postversion": "git push && gh-release"
},

@@ -25,9 +29,11 @@ "repository": {

"devDependencies": {
"@brightcove/kacl": "^0.1.11",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^5.3.0",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"eslint": "^6.2.2",
"gh-release": "^4.0.3",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"typed-immutable": "^0.1.2"

@@ -34,0 +40,0 @@ },