Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
adanski committed Dec 5, 2023
1 parent fffd47c commit 332ff67
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 18.x
- run: yarn install --no-lockfile
- run: yarn lerna bootstrap
- run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.x
node-version: 18.x
registry-url: https://registry.npmjs.org
- run: yarn install --no-lockfile
- run: yarn lerna bootstrap
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- run: yarn install
- run: yarn lerna bootstrap
- run: yarn build
Expand Down
8 changes: 4 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
"private": true,
"version": "0.1.12",
"scripts": {
"build": "rm -fr dist cache && parcel build index.pug --public-url /textcomplete",
"build": "rm -fr dist .cache && parcel build index.pug --public-url /textcomplete",
"format:eslint": "eslint --fix '**/*.ts' '**/*.tsx'",
"format:prettier": "prettier --write '**/*.ts' '**/*.tsx'",
"format": "run-s format:eslint format:prettier",
"lint": "eslint '**/*.ts' '**/*.tsx'",
"start": "parcel index.pug"
},
"dependencies": {
"@textcomplete/codemirror": "^0.1.11",
"@textcomplete/codemirror": "^0.1.12",
"@textcomplete/contenteditable": "^0.1.12",
"@textcomplete/core": "^0.1.11",
"@textcomplete/textarea": "^0.1.11",
"@textcomplete/core": "^0.1.12",
"@textcomplete/textarea": "^0.1.12",
"codemirror": "^5.54.0",
"prism-react-renderer": "^1.1.1",
"react": "^17.0.2",
Expand Down
4 changes: 2 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"version": "0.1.12",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
"version": {
"ignoreChanges": [
Expand All @@ -14,5 +13,6 @@
"packages": [
"packages/textcomplete-*",
"docs"
]
],
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@
"test": "lerna run test --parallel"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/jest": "^29.5.10",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.0",
"lerna": "^3.22.1",
"jest": "^29.7.0",
"lerna": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"prettier": {
"semi": false
Expand Down
4 changes: 2 additions & 2 deletions packages/textcomplete-codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"lint": "eslint 'src/**/*.ts'"
},
"devDependencies": {
"@textcomplete/core": "^0.1.11",
"@textcomplete/core": "^0.1.12",
"@types/codemirror": "^5.60.2",
"codemirror": "^5.54"
},
"peerDependencies": {
"@textcomplete/core": "^0.1.9",
"@textcomplete/core": "^0.1.12",
"codemirror": "^5.54"
},
"publishConfig": {
Expand Down
6 changes: 3 additions & 3 deletions packages/textcomplete-contenteditable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"lint": "eslint 'src/**/*.ts'"
},
"dependencies": {
"@textcomplete/utils": "^0.1.11"
"@textcomplete/utils": "^0.1.12"
},
"devDependencies": {
"@textcomplete/core": "^0.1.11"
"@textcomplete/core": "^0.1.12"
},
"peerDependencies": {
"@textcomplete/core": "^0.1.9"
"@textcomplete/core": "^0.1.12"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/textcomplete-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test": "jest"
},
"dependencies": {
"eventemitter3": "^4.0.4"
"eventemitter3": "^5.0.1"
},
"publishConfig": {
"access": "public"
Expand Down
8 changes: 4 additions & 4 deletions packages/textcomplete-textarea/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
"lint": "eslint 'src/**/*.ts'"
},
"dependencies": {
"@textcomplete/utils": "^0.1.11",
"@textcomplete/utils": "^0.1.12",
"textarea-caret": "^3.1.0",
"undate": "^0.3.0"
},
"devDependencies": {
"@textcomplete/core": "^0.1.11",
"@types/textarea-caret": "^3.0.0"
"@textcomplete/core": "^0.1.12",
"@types/textarea-caret": "^3.0.3"
},
"peerDependencies": {
"@textcomplete/core": "^0.1.9"
"@textcomplete/core": "^0.1.12"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/textcomplete-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
"lint": "eslint 'src/**/*.ts'"
},
"devDependencies": {
"@textcomplete/core": "^0.1.11",
"@textcomplete/core": "^0.1.12",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.0.5",
"typescript": "^4.2.3"
"typescript": "^5.3.2"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 332ff67

Please sign in to comment.