Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
juanrgm committed May 15, 2022
1 parent bb1656d commit 5eea1f4
Show file tree
Hide file tree
Showing 12 changed files with 960 additions and 738 deletions.
10 changes: 10 additions & 0 deletions .changeset/nasty-buckets-retire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"@suid/base": patch
"@suid/icons-material": patch
"@suid/material": patch
"@suid/site": patch
"@suid/types": patch
"@suid/utils": patch
---

Update dependencies
3 changes: 1 addition & 2 deletions .ncurc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
packageFile: ["./package.json", "./packages/*/package.json"],
reject: ["@suid/*", "babel-jest", "jest"],
dep: "dev,optional,peer,prod,bundle",
dep: "dev,optional,prod,bundle",
};
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,34 +68,35 @@
"watch": "tsc --build tsconfig.build.json -w"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-env": "^7.17.10",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-jest": "^27.0.2",
"babel-preset-solid": "^1.3.17",
"eslint": "^8.14.0",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"babel-jest": "^28.1.0",
"babel-preset-solid": "^1.4.0",
"eslint": "^8.15.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-solid": "^0.4.7",
"husky": "^7.0.4",
"jest": "^27.5.1",
"npm-check-updates": "^12.5.9",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"npm-check-updates": "^12.5.11",
"prettier": "^2.6.2",
"prettier-plugin-packagejson": "^2.2.17",
"prettier-plugin-packagejson": "^2.2.18",
"prettier-plugin-sort-json": "^0.0.2",
"solid-jest": "^0.2.0",
"solid-js": "^1.3.17",
"solid-testing-library": "^0.3.0",
"ts-jest": "^27.1.4",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
"typescript": "^4.6.4"
},
"info": "SUID is all a set of utils and components ported from MUI Core and much more.",
"pnpm": {
Expand Down
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"clsx": "^1.1.1"
},
"peerDependencies": {
"solid-js": "^1.3.17"
"solid-js": "^1.3.0"
},
"publishConfig": {
"directory": "lib"
Expand Down
2 changes: 1 addition & 1 deletion packages/icons-material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@suid/material": "workspace:*"
},
"peerDependencies": {
"solid-js": "^1.3.17"
"solid-js": "^1.3.0"
},
"publishConfig": {
"directory": "lib"
Expand Down
2 changes: 1 addition & 1 deletion packages/material/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"clsx": "^1.1.1"
},
"peerDependencies": {
"solid-js": "^1.3.17"
"solid-js": "^1.3.0"
},
"publishConfig": {
"directory": "lib"
Expand Down
6 changes: 2 additions & 4 deletions packages/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,10 @@
"fast-glob": "^3.2.11",
"rimraf": "^3.0.2",
"sass": "^1.51.0",
"vite": "^2.9.6",
"solid-js": "^1.3.17",
"vite": "^2.9.9",
"vite-plugin-solid": "^2.2.6"
},
"peerDependencies": {
"solid-js": "^1.3.17"
},
"publishConfig": {
"directory": "dist"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/site/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const SUID_VERSIONS = SUID_PKG_NAMES.reduce((result, name) => {
const pkg = parseJsonFile(`${packageDir}/${name}/package.json`);
result[`@suid/${name}`] = pkg.version;
if (name === "site") {
result["solid-js"] = pkg.peerDependencies["solid-js"];
result["solid-js"] = pkg.dependencies["solid-js"];
result["vite"] = pkg.devDependencies["vite"];
result["vite-plugin-solid"] = pkg.devDependencies["vite-plugin-solid"];
} else if (name === "codemod") {
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"watch": "tsc --build -w"
},
"peerDependencies": {
"solid-js": "^1.3.17"
"solid-js": "^1.3.0"
},
"publishConfig": {
"directory": "lib"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"@suid/types": "workspace:*"
},
"peerDependencies": {
"solid-js": "^1.3.17"
"solid-js": "^1.3.0"
},
"publishConfig": {
"directory": "lib"
Expand Down
Loading

0 comments on commit 5eea1f4

Please sign in to comment.