Skip to content

Commit

Permalink
chore(release): 4.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [4.0.0](3.0.2...4.0.0) (2022-05-21)

### Bug Fixes

* drop support for Node 10 and 12 ([8af74f1](8af74f1))
* update dependencies ([6cc0d6f](6cc0d6f))

### BREAKING CHANGES

* This package no longer supports Node 10 and 12.
  • Loading branch information
semantic-release-bot committed May 21, 2022
1 parent 8dc5225 commit 8902927
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 34 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,12 @@
# [4.0.0](https://github.com/homer0/babel-plugin-transform-class-inject-directive/compare/3.0.2...4.0.0) (2022-05-21)


### Bug Fixes

* drop support for Node 10 and 12 ([8af74f1](https://github.com/homer0/babel-plugin-transform-class-inject-directive/commit/8af74f17596dcdb38ff47a92eba891cfe2b00235))
* update dependencies ([6cc0d6f](https://github.com/homer0/babel-plugin-transform-class-inject-directive/commit/6cc0d6f3def7f25257987cd1a6ce563986c0aaac))


### BREAKING CHANGES

* This package no longer supports Node 10 and 12.
68 changes: 34 additions & 34 deletions package.json
Expand Up @@ -2,55 +2,55 @@
"name": "babel-plugin-transform-class-inject-directive",
"description": "Detect an inject directive on a class constructor and define a static property with the list of dependencies.",
"homepage": "https://homer0.github.io/babel-plugin-transform-class-inject-directive/",
"version": "3.0.2",
"version": "4.0.0",
"repository": "homer0/babel-plugin-transform-class-inject-directive",
"author": "Leonardo Apiwan (@homer0) <me@homer0.com>",
"license": "MIT",
"dependencies": {
"@babel/types": "7.18.0"
"@babel/types": "7.18.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@homer0/eslint-plugin": "^9.0.2",
"@homer0/prettier-config": "^1.1.1",
"@homer0/prettier-plugin-jsdoc": "^5.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jsdoc": "^3.6.10",
"jsdoc-ts-utils": "^3.0.0",
"docdash": "homer0/docdash#semver:^2.1.0",
"leasot": "^13.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@homer0/eslint-plugin": "^9.0.2",
"@homer0/prettier-config": "^1.1.1",
"@homer0/prettier-plugin-jsdoc": "^5.1.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint": "^8.16.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^28.1.0",
"jsdoc": "^3.6.10",
"jsdoc-ts-utils": "^3.0.0",
"docdash": "homer0/docdash#semver:^2.1.0",
"leasot": "^13.1.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"semantic-release": "^19.0.2"
},
"engine-strict": true,
"engines": {
"node": ">=14"
"node": ">=14"
},
"main": "src/index.js",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write"
]
"*.js": [
"eslint",
"prettier --write"
]
},
"scripts": {
"prepare": "./utils/scripts/prepare",
"test": "./utils/scripts/test",
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"docs": "./utils/scripts/docs",
"todo": "./utils/scripts/todo"
"prepare": "./utils/scripts/prepare",
"test": "./utils/scripts/test",
"lint": "./utils/scripts/lint",
"lint:all": "./utils/scripts/lint-all",
"docs": "./utils/scripts/docs",
"todo": "./utils/scripts/todo"
}
}

0 comments on commit 8902927

Please sign in to comment.