Skip to content

Commit

Permalink
Fix and rename internal packages
Browse files Browse the repository at this point in the history
  • Loading branch information
IniZio committed Nov 6, 2022
1 parent 2bacddb commit d4b5519
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
root: true,
// This tells ESLint to load the config from the package `eslint-config-custom`
extends: ["custom"],
// This tells ESLint to load the config from the package `@iniz/eslint-config-internal`
extends: ["@iniz/eslint-config-internal"],
settings: {
next: {
rootDir: ["examples/*/"],
Expand Down
4 changes: 2 additions & 2 deletions examples/preact/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "preact",
"name": "@iniz/example-preact",
"private": true,
"version": "0.0.1",
"type": "module",
Expand All @@ -10,7 +10,7 @@
},
"dependencies": {
"@iniz/preact": "workspace:*",
"preact": "^0.0.1"
"preact": "^10.10.6"
},
"devDependencies": {
"@preact/preset-vite": "^2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/react/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
extends: ["@iniz/eslint-config-internal"],
};
2 changes: 1 addition & 1 deletion examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"@types/node": "^17.0.12",
"@types/react": "^18.0.21",
"eslint": "7.32.0",
"eslint-config-custom": "workspace:*",
"@iniz/eslint-config-internal": "workspace:*",
"next-transpile-modules": "9.0.0",
"tsconfig": "workspace:*",
"typescript": "^4.5.3"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.24.4",
"eslint-config-custom": "workspace:*",
"@iniz/eslint-config-internal": "workspace:*",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"turbo": "latest"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
extends: ["@iniz/eslint-config-internal"],
};
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@vitest/coverage-istanbul": "^0.24.0",
"@vitest/ui": "^0.23.4",
"eslint": "7.32.0",
"eslint-config-custom": "workspace:*",
"@iniz/eslint-config-internal": "workspace:*",
"typescript": "^4.8.3",
"tsconfig": "workspace:*",
"vite": "^2.9.9",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "eslint-config-custom",
"name": "@iniz/eslint-config-internal",
"version": "0.0.0",
"license": "MIT",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/preact/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
extends: ["@iniz/eslint-config-internal"],
};
4 changes: 2 additions & 2 deletions packages/preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
"@vitest/coverage-istanbul": "^0.24.0",
"@vitest/ui": "^0.23.4",
"eslint": "7.32.0",
"eslint-config-custom": "workspace:*",
"@iniz/eslint-config-internal": "workspace:*",
"happy-dom": "^7.4.0",
"preact": "^0.0.1",
"preact": "^10.11.2",
"tsconfig": "workspace:*",
"tsup": "^6.2.3",
"vite": "^3.1.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
root: true,
extends: ["custom"],
extends: ["@iniz/eslint-config-internal"],
};
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@vitest/coverage-istanbul": "^0.24.0",
"@vitest/ui": "^0.23.4",
"eslint": "7.32.0",
"eslint-config-custom": "workspace:*",
"@iniz/eslint-config-internal": "workspace:*",
"happy-dom": "^7.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "website",
"name": "@iniz/website",
"version": "0.0.1",
"private": true,
"scripts": {
Expand Down

0 comments on commit d4b5519

Please sign in to comment.