Skip to content

Commit

Permalink
v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
yuku committed Dec 11, 2023
1 parent 6fb03a4 commit 975b9ff
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 26 deletions.
10 changes: 5 additions & 5 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docs",
"private": true,
"version": "0.1.12",
"version": "0.1.13",
"scripts": {
"build": "rimraf dist .cache && parcel build index.pug --public-url /textcomplete",
"format:eslint": "eslint --fix **/*.ts **/*.tsx",
Expand All @@ -11,10 +11,10 @@
"start": "parcel index.pug"
},
"dependencies": {
"@textcomplete/codemirror": "^0.1.12",
"@textcomplete/contenteditable": "^0.1.12",
"@textcomplete/core": "^0.1.12",
"@textcomplete/textarea": "^0.1.12",
"@textcomplete/codemirror": "^0.1.13",
"@textcomplete/contenteditable": "^0.1.13",
"@textcomplete/core": "^0.1.13",
"@textcomplete/textarea": "^0.1.13",
"codemirror": "^5.54.0",
"prism-react-renderer": "^1.1.1",
"react": "^17.0.2",
Expand Down
12 changes: 3 additions & 9 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
{
"version": "0.1.12",
"version": "0.1.13",
"npmClient": "yarn",
"command": {
"version": {
"ignoreChanges": [
"docs",
"*.md"
],
"ignoreChanges": ["docs", "*.md"],
"allowBransh": "master"
}
},
"packages": [
"packages/textcomplete-*",
"docs"
],
"packages": ["packages/textcomplete-*", "docs"],
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"jest": "^29.7.0",
"jest-environment-jsdom": "~29.7.0",
"lerna": "^8.0.0",
"rimraf": "^5.0.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/textcomplete-codemirror/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textcomplete/codemirror",
"version": "0.1.12",
"version": "0.1.13",
"description": "Textcomplete editor for CodeMirror",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
"@textcomplete/core": "^0.1.12",
"@textcomplete/core": "^0.1.13",
"@types/codemirror": "^5.60.2",
"codemirror": "^5.54"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/textcomplete-contenteditable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textcomplete/contenteditable",
"version": "0.1.12",
"version": "0.1.13",
"description": "Textcomplete editor for contenteditable",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,10 +16,10 @@
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@textcomplete/utils": "^0.1.12"
"@textcomplete/utils": "^0.1.13"
},
"devDependencies": {
"@textcomplete/core": "^0.1.12"
"@textcomplete/core": "^0.1.13"
},
"peerDependencies": {
"@textcomplete/core": "^0.1.12"
Expand Down
2 changes: 1 addition & 1 deletion packages/textcomplete-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textcomplete/core",
"version": "0.1.12",
"version": "0.1.13",
"description": "Textcomplete core.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
6 changes: 3 additions & 3 deletions packages/textcomplete-textarea/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textcomplete/textarea",
"version": "0.1.12",
"version": "0.1.13",
"description": "Textcomplete editor for HTMLTextAreaElement",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,12 +16,12 @@
"lint": "eslint src/**/*.ts"
},
"dependencies": {
"@textcomplete/utils": "^0.1.12",
"@textcomplete/utils": "^0.1.13",
"textarea-caret": "^3.1.0",
"undate": "^0.3.0"
},
"devDependencies": {
"@textcomplete/core": "^0.1.12",
"@textcomplete/core": "^0.1.13",
"@types/textarea-caret": "^3.0.3"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/textcomplete-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@textcomplete/utils",
"version": "0.1.12",
"version": "0.1.13",
"description": "Utility functions for Textcomplete editors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
"lint": "eslint src/**/*.ts"
},
"devDependencies": {
"@textcomplete/core": "^0.1.12"
"@textcomplete/core": "^0.1.13"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 975b9ff

Please sign in to comment.