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

mixinable

Package Overview
Dependencies
Maintainers
5
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mixinable - npm Package Compare versions

Comparing version 4.0.0 to 5.0.0

dist/index.js

16

CHANGELOG.md

@@ -1,5 +0,19 @@

# Change Log
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [5.0.0](https://github.com/untool/mixinable/compare/v4.0.0...v5.0.0) (2020-04-24)
### ⚠ BREAKING CHANGES
* Replace default export with named export
### Bug Fixes
* correct lint-staged configuration ([d4bf275](https://github.com/untool/mixinable/commit/d4bf275fa0da804baf4c770aabcc6b192496110c))
* rewrite mixinable using esm ([69261c5](https://github.com/untool/mixinable/commit/69261c52efa9a8870d4d5ed82e0709f4cd3faa9d))
<a name="4.0.0"></a>

@@ -6,0 +20,0 @@ # [4.0.0](https://github.com/untool/mixinable/compare/v3.1.2...v4.0.0) (2018-08-17)

88

package.json
{
"name": "mixinable",
"version": "4.0.0",
"version": "5.0.0",
"description": "Functional JavaScript Mixin Utility",
"main": "index.js",
"source": "src/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.mjs",
"scripts": {
"build": "microbundle build",
"test": "ava --verbose",
"lint": "eslint --ignore-path .gitignore '**/*.js'",
"fmt": "prettier --write --ignore-path .gitignore '**/*.js'",
"prerelease": "yarn build",
"release": "standard-version",
"update": "yarn upgrade-interactive --latest",
"reset": "git clean -dfx && yarn",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"postrelease": "git push --follow-tags; npm publish"
"postrelease": "git push --follow-tags && npm publish"
},

@@ -31,57 +34,29 @@ "publishConfig": {

"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"@commitlint/travis-cli": "^7.0.0",
"ava": "^0.25.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.0",
"eslint-config-prettier": "^3.0.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.0.0",
"@untool/eslint-config": "^1.0.0",
"@untool/prettier-config": "^1.0.0",
"ava": "^3.0.0",
"cz-conventional-changelog": "^3.0.0",
"eslint": "^6.0.0",
"esm": "^3.2.25",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"microbundle": "^0.11.0",
"prettier": "^1.13.4",
"standard-version": "^4.2.0"
"standard-version": "^7.0.0"
},
"renovate": {
"extends": [
"config:base"
],
"ignoreDeps": [
"prettier"
],
"lockFileMaintenance": {
"enabled": true
},
"pinVersions": false,
"prCreation": "not-pending",
"semanticCommits": true,
"semanticPrefix": "chore:"
"@untool/renovate-config:base"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"proseWrap": "never"
},
"prettier": "@untool/prettier-config",
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
},
"env": {
"node": true
},
"globals": {
"Promise": true
}
"extends": "@untool/eslint-config"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
"prettier --write"
]

@@ -104,3 +79,14 @@ },

}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"ava": {
"require": [
"esm"
]
}
}

Sorry, the diff of this file is not supported yet

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