Skip to content

Commit

Permalink
chore: release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
woutermont committed Apr 26, 2021
1 parent 547eae1 commit b6fbad9
Show file tree
Hide file tree
Showing 19 changed files with 143 additions and 42 deletions.
5 changes: 5 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
registry=https://registry.npmjs.org/

@digita-ai:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
always-auth=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)


### **Features**

* hoisted jest config ([595afac](https://github.com/digita-ai/dgt-config/commit/595afacb4cba5b28d54324267cbd4dfce9ea4ecc))


### **Bug Fixes**

* commitlint package correction ([92f1963](https://github.com/digita-ai/dgt-config/commit/92f1963a89de71b55e9c12e70c08491a7997da32))
* lerna package fixes ([d96a122](https://github.com/digita-ai/dgt-config/commit/d96a122b1e686766eeebb9996336d39eabdee21b))
* lint staged config ([792ae50](https://github.com/digita-ai/dgt-config/commit/792ae50627ec19e4bb0aed484860ac7dc3f1f812))
* typescript package fixes ([2a9fe60](https://github.com/digita-ai/dgt-config/commit/2a9fe60d5dac27422a185b3ac7e30a0b33aa57af))
* wrong index ([547eae1](https://github.com/digita-ai/dgt-config/commit/547eae1cabd0908282c671e6d6b0aa4663309ca7))



### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package root
Expand Down
86 changes: 57 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,60 @@
{
"name": "root",
"version": "0.0.2",
"private": true,
"commitlint": {
"extends": [
"./packages/commitlint-config"
]
"packages": [
"packages/*"
],
"command": {
"bootstrap": {
"ignorePrepublish": true
},
"version": {
"allowBranch": [
"master",
"develop"
],
"conventionalCommits": true,
"exact": true,
"forcePublish": true,
"message": "chore: release %s",
"granularPathspec": false,
"tag-version-prefix": "",
"changelogPreset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "**Features**"
},
{
"type": "fix",
"section": "**Bug Fixes**"
},
{
"type": "docs",
"section": "**Documentation**"
},
{
"type": "chore",
"hidden": true
},
{
"type": "build",
"hidden": true
},
{
"type": "test",
"hidden": true
}
],
"releaseCommitMessageFormat": "chore: release v{{currentTag}}",
"issuePrefixes": [
"#"
],
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
"userUrlFormat": "{{host}}/{{user}}"
}
}
},
"lerna": {
"extends": "./packages/lerna-config",
"version": "0.0.2"
},
"lint-staged": {
"*": []
},
"scripts": {
"release": "lerna version",
"postinstall": "husky install",
"bootstrap": "npm ci && lerna bootstrap --ignore-prepublish",
"bootstrap:no-ci": "npm i && lerna bootstrap --no-ci --ignore-prepublish",
"lint:staged": "lerna run lint:staged --since HEAD --stream --concurrency 1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4"
}
"version": "0.1.0"
}
10 changes: 10 additions & 0 deletions packages/commitlint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)


### **Bug Fixes**

* commitlint package correction ([92f1963](https://github.com/digita-ai/dgt-config/commit/92f1963a89de71b55e9c12e70c08491a7997da32))
* lint staged config ([792ae50](https://github.com/digita-ai/dgt-config/commit/792ae50627ec19e4bb0aed484860ac7dc3f1f812))



### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package @digita-ai/commitlint-config
Expand Down
2 changes: 1 addition & 1 deletion packages/commitlint-config/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions packages/commitlint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/commitlint-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shareable CommitLint config for internal use",
"author": "Wouter Termont <wouter.termont@digita.ai>",
"main": "./index.js",
Expand All @@ -16,7 +16,6 @@
"url": "https://github.com/digita-ai/dgt-config/issues"
},
"scripts": {

"lint:staged": "lint-staged"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)

**Note:** Version bump only for package @digita-ai/eslint-config





### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package @digita-ai/eslint-config
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/eslint-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shareable ESLint config for internal use",
"author": "Wouter Termont <wouter.termont@digita.ai>",
"main": "./index.js",
Expand Down
14 changes: 14 additions & 0 deletions packages/jest-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)


### **Features**

* hoisted jest config ([595afac](https://github.com/digita-ai/dgt-config/commit/595afacb4cba5b28d54324267cbd4dfce9ea4ecc))


### **Bug Fixes**

* wrong index ([547eae1](https://github.com/digita-ai/dgt-config/commit/547eae1cabd0908282c671e6d6b0aa4663309ca7))



### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package @digita-ai/jest-config
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-config/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/jest-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/jest-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shareable jest config for internal use",
"author": "Wouter Termont <wouter.termont@digita.ai>",
"main": "./jest=preset.js",
Expand All @@ -17,8 +17,8 @@
},
"peerDependencies": {
"@types/jest": "^26.0.22",
"jest-mock-extended": "^1.0.13",
"jest": "^26.6.3"
"jest": "^26.6.3",
"jest-mock-extended": "^1.0.13"
},
"dependencies": {
"ts-jest": "^26.5.5",
Expand Down
9 changes: 9 additions & 0 deletions packages/lerna-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)


### **Bug Fixes**

* lerna package fixes ([d96a122](https://github.com/digita-ai/dgt-config/commit/d96a122b1e686766eeebb9996336d39eabdee21b))



### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package @digita-ai/lerna-config
Expand Down
2 changes: 1 addition & 1 deletion packages/lerna-config/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/lerna-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/lerna-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shareable lerna config for internal use",
"author": "Wouter Termont <wouter.termont@digita.ai>",
"main": "./index.js",
Expand Down
9 changes: 9 additions & 0 deletions packages/typescript-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.0](https://github.com/digita-ai/dgt-config/compare/v0.0.2...v0.1.0) (2021-04-26)


### **Bug Fixes**

* typescript package fixes ([2a9fe60](https://github.com/digita-ai/dgt-config/commit/2a9fe60d5dac27422a185b3ac7e30a0b33aa57af))



### [0.0.2](https://github.com/digita-ai/dgt-config/compare/v0.0.1...v0.0.2) (2021-04-25)

**Note:** Version bump only for package @digita-ai/typescript-config
Expand Down
2 changes: 1 addition & 1 deletion packages/typescript-config/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/typescript-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@digita-ai/typescript-config",
"version": "0.0.2",
"version": "0.1.0",
"description": "Shareable TypeScript config for internal use",
"author": "Wouter Termont <wouter.termont@digita.ai>",
"main": "./index.json",
Expand Down

0 comments on commit b6fbad9

Please sign in to comment.