Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore(monorepo): adjust dependencies #74

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_modules
/libs/**/dist.browser
/libs/**/dist.browser-s3
/libs/**/coverage
/apps/**/dist

# Yarn 3 files
.pnp.*
Expand Down
672 changes: 336 additions & 336 deletions .yarn/releases/yarn-4.0.2.cjs → .yarn/releases/yarn-4.1.0.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ enableTransparentWorkspaces: false

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.0.2.cjs
yarnPath: .yarn/releases/yarn-4.1.0.cjs
2 changes: 1 addition & 1 deletion apps/example/src/simple.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getDiff } from 'json-difference'
import { getDiff } from '@json-difference'

const coffee = { color: { color1: 'black', color2: 'brown' }, special: true }
const oil = { color: { color1: 'red', color2: 'blue' }, special2: false }
Expand Down
2 changes: 1 addition & 1 deletion apps/example/src/stress.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Packages
import { getDiff, Delta } from 'json-difference'
import { getDiff, Delta } from '@json-difference'
import * as fs from 'fs'
import * as path from 'path'

Expand Down
6 changes: 2 additions & 4 deletions apps/example/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"module": "ESNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
"outDir": "./dist" /* Redirect output structure to the directory. */,
"module": "ESNext",
"esModuleInterop": true,
"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
"strict": true /* Enable all strict type-checking options. */,
"strict": true,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": ["src"]
Expand Down
24 changes: 0 additions & 24 deletions apps/playground/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion apps/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"react": "^18.2.0",
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"json-difference": "1.16.0",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.55.0"
},
Expand Down
17 changes: 9 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,18 @@
"graph:affected": "yarn nx graph --affected",
"release": "npx nx run-many --target=version --parallel=1 ${0}"
},
"devDependencies": {
"dependencies": {
"@chakra-ui/icons": "^2.1.0",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"monaco-editor": "^0.40.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.55.0",
"typescript": "5.1.6"
},
"devDependencies": {
"@jscutlery/semver": "^4.2.0",
"@nx/devkit": "18.0.0",
"@nx/eslint": "18.0.0",
Expand Down Expand Up @@ -50,26 +57,20 @@
"eslint-plugin-react-refresh": "^0.4.3",
"framer-motion": "^10.13.0",
"jest": "^29.7.0",
"json-difference": "1.15.7",
"jsonc-eslint-parser": "^2.4.0",
"monaco-editor": "^0.40.0",
"ngx-deploy-npm": "^7.1.0",
"nx": "18.0.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.55.0",
"replace-json-property": "^1.9.0",
"rollup-plugin-copy": "^3.5.0",
"semantic-release": "^22.0.12",
"semantic-release-yarn": "^2.0.2",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "5.1.6",
"vite": "^5.0.10",
"vite-plugin-dts": "~2.3.0",
"vite-plugin-static-copy": "^1.0.0",
"vite-tsconfig-paths": "^4.2.0"
},
"packageManager": "yarn@4.0.2"
"packageManager": "yarn@4.1.0"
}
Loading
Loading