Skip to content

Commit

Permalink
chore(release): pub 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pubuzhixing8 committed Dec 23, 2021
1 parent cf8355c commit 04e471c
Show file tree
Hide file tree
Showing 4 changed files with 119 additions and 105 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.

### [1.7.0](https://github.com/worktile/slate-angular/compare/v1.6.5...v1.7.0) (2021-12-23)


### Features

* **placeholder:** feat(decorate): add placeholder (#159) 感谢 @FrankWang117


### Bug Fixes

* **core:** handle move nodes Transforms.moveNodes does not work #150
* **core:** fix(core): handling of delete in Chrome when inline void node is selected


### [1.6.5](https://github.com/worktile/slate-angular/compare/v1.6.4...v1.6.5) (2021-11-03)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

182 changes: 91 additions & 91 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,94 +1,94 @@
{
"name": "slate-angular",
"version": "1.6.5",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"build": "ng build slate-angular --configuration production && cpx \"./packages/src/**/*.scss\" ./dist/",
"build:demo": "ng build demo --configuration production",
"pub": "npm run build && cd dist && npm publish --access public",
"patch": "cd packages && npm version patch",
"minor": "cd packages && npm version minor",
"major": "cd packages && npm version major",
"release": "standard-version",
"test": "ng test slate-angular",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
"e2e": "ng e2e"
},
"lint-staged": {
"packages/**/*.{ts}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
"name": "slate-angular",
"version": "1.7.0",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"build": "ng build slate-angular --configuration production && cpx \"./packages/src/**/*.scss\" ./dist/",
"build:demo": "ng build demo --configuration production",
"pub": "npm run build && cd dist && npm publish --access public",
"patch": "cd packages && npm version patch",
"minor": "cd packages && npm version minor",
"major": "cd packages && npm version major",
"release": "standard-version",
"test": "ng test slate-angular",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "ng lint",
"e2e": "ng e2e"
},
"lint-staged": {
"packages/**/*.{ts}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/worktile/slate-angular"
},
"dependencies": {
"@angular/animations": "~12.2.7",
"@angular/common": "~12.2.7",
"@angular/compiler": "~12.2.7",
"@angular/core": "~12.2.7",
"@angular/forms": "~12.2.7",
"@angular/platform-browser": "~12.2.7",
"@angular/platform-browser-dynamic": "~12.2.7",
"@angular/router": "~12.2.7",
"debug": "^4.1.1",
"direction": "^1.0.3",
"is-hotkey": "^0.1.6",
"rxjs": "~6.6.0",
"slate": "0.67.1",
"slate-history": "0.62.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.7",
"@angular-devkit/core": "^12.2.7",
"@angular-eslint/builder": "12.5.0",
"@angular-eslint/eslint-plugin": "12.5.0",
"@angular-eslint/eslint-plugin-template": "12.5.0",
"@angular-eslint/schematics": "12.5.0",
"@angular-eslint/template-parser": "12.5.0",
"@angular/cli": "~12.2.7",
"@angular/compiler-cli": "~12.2.7",
"@angular/language-service": "~12.2.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/codemirror": "0.0.81",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"coveralls": "^3.0.6",
"cpx": "^1.5.0",
"eslint": "^7.26.0",
"faker": "^4.1.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.0.8",
"ng-packagr": "^12.2.2",
"prettier": "^1.19.1",
"protractor": "~7.0.0",
"sass": "^1.42.1",
"standard-version": "^7.0.1",
"ts-node": "~8.3.0",
"typescript": "~4.3.5"
}
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/worktile/slate-angular"
},
"dependencies": {
"@angular/animations": "~12.2.7",
"@angular/common": "~12.2.7",
"@angular/compiler": "~12.2.7",
"@angular/core": "~12.2.7",
"@angular/forms": "~12.2.7",
"@angular/platform-browser": "~12.2.7",
"@angular/platform-browser-dynamic": "~12.2.7",
"@angular/router": "~12.2.7",
"debug": "^4.1.1",
"direction": "^1.0.3",
"is-hotkey": "^0.1.6",
"rxjs": "~6.6.0",
"slate": "0.67.1",
"slate-history": "0.62.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.7",
"@angular-devkit/core": "^12.2.7",
"@angular-eslint/builder": "12.5.0",
"@angular-eslint/eslint-plugin": "12.5.0",
"@angular-eslint/eslint-plugin-template": "12.5.0",
"@angular-eslint/schematics": "12.5.0",
"@angular-eslint/template-parser": "12.5.0",
"@angular/cli": "~12.2.7",
"@angular/compiler-cli": "~12.2.7",
"@angular/language-service": "~12.2.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/codemirror": "0.0.81",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"coveralls": "^3.0.6",
"cpx": "^1.5.0",
"eslint": "^7.26.0",
"faker": "^4.1.0",
"husky": "^4.3.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.0.8",
"ng-packagr": "^12.2.2",
"prettier": "^1.19.1",
"protractor": "~7.0.0",
"sass": "^1.42.1",
"standard-version": "^7.0.1",
"ts-node": "~8.3.0",
"typescript": "~4.3.5"
}
}
26 changes: 13 additions & 13 deletions packages/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "slate-angular",
"version": "1.6.5",
"dependencies": {
"tslib": "^2.0.0",
"slate-history": "^0.62.0",
"debug": "^4.1.1",
"direction": "^1.0.3",
"is-hotkey": "^0.1.6"
},
"peerDependencies": {
"slate": ">= 0.63.0"
}
}
"name": "slate-angular",
"version": "1.7.0",
"dependencies": {
"tslib": "^2.0.0",
"slate-history": "^0.62.0",
"debug": "^4.1.1",
"direction": "^1.0.3",
"is-hotkey": "^0.1.6"
},
"peerDependencies": {
"slate": ">= 0.63.0"
}
}

0 comments on commit 04e471c

Please sign in to comment.