Skip to content

Commit 975b9ff

Browse files
committed
v0.1.13
1 parent 6fb03a4 commit 975b9ff

File tree

8 files changed

+20
-26
lines changed

8 files changed

+20
-26
lines changed

docs/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docs",
33
"private": true,
4-
"version": "0.1.12",
4+
"version": "0.1.13",
55
"scripts": {
66
"build": "rimraf dist .cache && parcel build index.pug --public-url /textcomplete",
77
"format:eslint": "eslint --fix **/*.ts **/*.tsx",
@@ -11,10 +11,10 @@
1111
"start": "parcel index.pug"
1212
},
1313
"dependencies": {
14-
"@textcomplete/codemirror": "^0.1.12",
15-
"@textcomplete/contenteditable": "^0.1.12",
16-
"@textcomplete/core": "^0.1.12",
17-
"@textcomplete/textarea": "^0.1.12",
14+
"@textcomplete/codemirror": "^0.1.13",
15+
"@textcomplete/contenteditable": "^0.1.13",
16+
"@textcomplete/core": "^0.1.13",
17+
"@textcomplete/textarea": "^0.1.13",
1818
"codemirror": "^5.54.0",
1919
"prism-react-renderer": "^1.1.1",
2020
"react": "^17.0.2",

lerna.json

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
{
2-
"version": "0.1.12",
2+
"version": "0.1.13",
33
"npmClient": "yarn",
44
"command": {
55
"version": {
6-
"ignoreChanges": [
7-
"docs",
8-
"*.md"
9-
],
6+
"ignoreChanges": ["docs", "*.md"],
107
"allowBransh": "master"
118
}
129
},
13-
"packages": [
14-
"packages/textcomplete-*",
15-
"docs"
16-
],
10+
"packages": ["packages/textcomplete-*", "docs"],
1711
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
1812
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"jest": "^29.7.0",
2626
"jest-environment-jsdom": "~29.7.0",
2727
"lerna": "^8.0.0",
28-
"rimraf": "^5.0.5",
2928
"npm-run-all": "^4.1.5",
3029
"prettier": "^3.1.0",
30+
"rimraf": "^5.0.5",
3131
"ts-jest": "^29.1.1",
3232
"typescript": "^5.3.2"
3333
}

packages/textcomplete-codemirror/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcomplete/codemirror",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"description": "Textcomplete editor for CodeMirror",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -16,7 +16,7 @@
1616
"lint": "eslint src/**/*.ts"
1717
},
1818
"devDependencies": {
19-
"@textcomplete/core": "^0.1.12",
19+
"@textcomplete/core": "^0.1.13",
2020
"@types/codemirror": "^5.60.2",
2121
"codemirror": "^5.54"
2222
},

packages/textcomplete-contenteditable/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcomplete/contenteditable",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"description": "Textcomplete editor for contenteditable",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -16,10 +16,10 @@
1616
"lint": "eslint src/**/*.ts"
1717
},
1818
"dependencies": {
19-
"@textcomplete/utils": "^0.1.12"
19+
"@textcomplete/utils": "^0.1.13"
2020
},
2121
"devDependencies": {
22-
"@textcomplete/core": "^0.1.12"
22+
"@textcomplete/core": "^0.1.13"
2323
},
2424
"peerDependencies": {
2525
"@textcomplete/core": "^0.1.12"

packages/textcomplete-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcomplete/core",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"description": "Textcomplete core.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/textcomplete-textarea/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcomplete/textarea",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"description": "Textcomplete editor for HTMLTextAreaElement",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -16,12 +16,12 @@
1616
"lint": "eslint src/**/*.ts"
1717
},
1818
"dependencies": {
19-
"@textcomplete/utils": "^0.1.12",
19+
"@textcomplete/utils": "^0.1.13",
2020
"textarea-caret": "^3.1.0",
2121
"undate": "^0.3.0"
2222
},
2323
"devDependencies": {
24-
"@textcomplete/core": "^0.1.12",
24+
"@textcomplete/core": "^0.1.13",
2525
"@types/textarea-caret": "^3.0.3"
2626
},
2727
"peerDependencies": {

packages/textcomplete-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@textcomplete/utils",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"description": "Utility functions for Textcomplete editors",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -16,7 +16,7 @@
1616
"lint": "eslint src/**/*.ts"
1717
},
1818
"devDependencies": {
19-
"@textcomplete/core": "^0.1.12"
19+
"@textcomplete/core": "^0.1.13"
2020
},
2121
"publishConfig": {
2222
"access": "public"

0 commit comments

Comments
 (0)