chore(release): 0.0.2

This commit is contained in:
Mo
2022-06-13 11:08:06 -05:00
parent a0c98a45f4
commit c915723bca
2 changed files with 1061 additions and 5 deletions

1044
CHANGELOG.md Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@standardnotes/app-monorepo", "name": "@standardnotes/app-monorepo",
"version": "0.0.1", "version": "0.0.2",
"private": true, "private": true,
"author": "Standard Notes", "author": "Standard Notes",
"workspaces": { "workspaces": {
@@ -22,8 +22,7 @@
"start:server:web": "lerna run start --scope=@standardnotes/web-server", "start:server:web": "lerna run start --scope=@standardnotes/web-server",
"start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server", "start:server:web:localhost": "lerna run start:no-binding --scope=@standardnotes/web-server",
"prepare": "husky install", "prepare": "husky install",
"version-bump": "lerna version --no-push --loglevel=silly --conventional-commits --yes -m \"chore(release): publish\"", "release": "standard-version",
"publish-packages": "lerna publish from-git --yes",
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock", "reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"version": "yarn install --no-immutable && git add yarn.lock" "version": "yarn install --no-immutable && git add yarn.lock"
}, },
@@ -35,16 +34,29 @@
"@types/hoist-non-react-statics/@types/react": "17.0.2" "@types/hoist-non-react-statics/@types/react": "17.0.2"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@standardnotes/config": "^2.4.3", "@standardnotes/config": "^2.4.3",
"@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0", "@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.17.0", "eslint": "^8.17.0",
"husky": "^7.0.4", "husky": "^8.0.1",
"lint-staged": "^13.0.1", "lint-staged": "^13.0.1",
"prettier": "^2.6.2", "prettier": "^2.6.2",
"standard-version": "^9.5.0",
"typescript": "^4.7.3", "typescript": "^4.7.3",
"webpack": "^5.72.0", "webpack": "^5.72.0",
"webpack-cli": "^4.9.2" "webpack-cli": "^4.9.2"
}, },
"packageManager": "yarn@3.2.1" "packageManager": "yarn@3.2.1",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
} }