Skip to content

Commit

Permalink
fix: update deps to remove punycode warning
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Oct 5, 2024
1 parent 7dadd8f commit 6a957b5
Show file tree
Hide file tree
Showing 13 changed files with 756 additions and 985 deletions.
11 changes: 11 additions & 0 deletions .changeset/dry-beans-eat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
'demo-project': patch
'clarigen-docs': patch
'@clarigen/boot': patch
'@clarigen/test': patch
'@clarigen/cli': patch
'@clarigen/core': patch
'@clarigen/web': patch
---

Updates dependencies to get rid of punycode warning
3 changes: 2 additions & 1 deletion demo-project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@
},
"devDependencies": {
"@types/node": "20.10.4",
"tsx": "^4.7.2",
"vite": "^5.1.4",
"vitest": "1.3.1",
"vitest": "2.1.2",
"vitest-environment-clarinet": "2.0.0"
}
}
4 changes: 4 additions & 0 deletions demo-project/tests/counter.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
process.on('warning', warning => {
console.warn(warning);
});

import { CoreNodeEventType, cvToValue, projectFactory } from '@clarigen/core';
import { accounts, project } from '../esm/index';
import { rov, rovOk, txOk, txErr, ro, varGet, mapGet, filterEvents, tx } from '@clarigen/test';
Expand Down
2 changes: 1 addition & 1 deletion docs-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@scure/base": "^1.1.5",
"@shikijs/compat": "^1.1.7",
"@stacks/blockchain-api-client": "7.10.0",
"@stacks/network": "^6.13.0",
"@stacks/network": "^6.16.0",
"@stacks/prettier-config": "^0.0.10",
"@stefanprobst/rehype-extract-toc": "^2.2.0",
"class-variance-authority": "^0.7.0",
Expand Down
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"prettier": "@stacks/prettier-config",
"devDependencies": {
"@changesets/changelog-github": "0.4.5",
"@changesets/changelog-github": "0.5.0",
"@stacks/eslint-config": "2.0.0",
"@stacks/prettier-config": "0.0.9",
"@types/node": "20.10.4",
Expand All @@ -28,25 +28,30 @@
"eslint": "^8.41.0",
"eslint-config-next": "13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.9",
"eslint-config-turbo": "^2.1.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.12.0",
"husky": "^4.2.5",
"next": "14.2.2",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"tslib": "^2.1.0",
"tsup": "^6.1.2",
"tsup": "^8.3.0",
"turbo": "1.2.5",
"typedoc": "0.25.13",
"typescript": "5.4.5",
"vitest": "1.0.4"
"vite": "^5.4.8",
"vitest": "2.1.2"
},
"dependencies": {
"@changesets/cli": "^2.23.2",
"jsonfile": "^6.1.0"
},
"resolutions": {
"typescript": "5.4.5"
"typescript": "5.4.5",
"whatwg-url": "^14.0.0"
},
"overrides": {
"whatwg-url": "^14.0.0"
}
}
3 changes: 1 addition & 2 deletions packages/boot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
"name": "@clarigen/boot",
"author": "Hank Stoever",
"devDependencies": {
"tsx": "^4.7.2",
"vitest": "1.5.0"
"tsx": "^4.7.2"
},
"dependencies": {
"@clarigen/core": "workspace:*",
Expand Down
2 changes: 0 additions & 2 deletions packages/clarigen-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
"type": "module",
"devDependencies": {
"@types/node": "20.10.4",
"vite": "^5.1.4",
"vitest": "1.3.1",
"vitest-environment-clarinet": "2.0.0",
"typescript": "5.4.5"
},
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
"name": "@clarigen/cli",
"author": "Hank Stoever",
"devDependencies": {
"tsx": "^4.7.2",
"vitest": "1.5.0"
"tsx": "^4.7.2"
},
"dependencies": {
"@antfu/ni": "^0.21.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/generated/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is automatically generated from the
// version in `package.json`

export const version = '2.0.5';
export const version = '2.1.0';
5 changes: 2 additions & 3 deletions packages/cli/test/dependencies/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

{
"name": "dependencies-tests",
"version": "1.0.0",
Expand All @@ -17,8 +16,8 @@
"@stacks/transactions": "^6.12.0",
"chokidar-cli": "^3.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1",
"vite": "^5.4.8",
"vitest": "^2.1.2",
"vitest-environment-clarinet": "^2.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@scure/base": "^1.1.6",
"@stacks/blockchain-api-client": "7.10.0",
"@stacks/common": "^6.13.0",
"@stacks/network": "^6.13.0",
"@stacks/network": "^6.16.0",
"@stacks/stacks-blockchain-api-types": "7.10.0",
"@stacks/transactions": "6.13.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"author": "Hank Stoever",
"dependencies": {
"@clarigen/core": "workspace:*",
"@stacks/network": "6.13.0"
"@stacks/network": "6.16.0"
},
"devDependencies": {},
"publishConfig": {
Expand Down
Loading

0 comments on commit 6a957b5

Please sign in to comment.