Update packages

This commit is contained in:
Zoe Roux
2022-11-12 21:20:46 +09:00
parent 2935640739
commit 3c6e58b6b7
8 changed files with 1333 additions and 614 deletions

File diff suppressed because one or more lines are too long

View File

@@ -3,5 +3,7 @@ nodeLinker: node-modules
plugins: plugins:
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs - path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools" spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
yarnPath: .yarn/releases/yarn-3.2.4.cjs yarnPath: .yarn/releases/yarn-3.2.4.cjs

View File

@@ -9,22 +9,22 @@
"web": "expo start --web" "web": "expo start --web"
}, },
"dependencies": { "dependencies": {
"@expo/html-elements": "^0.2.0", "@expo/html-elements": "^0.2.2",
"@expo/webpack-config": "^0.17.0", "@expo/webpack-config": "^0.17.3",
"expo": "~46.0.16", "expo": "^47.0.3",
"expo-status-bar": "~1.4.0", "expo-status-bar": "~1.4.2",
"react": "18.0.0", "react": "18.1.0",
"react-dom": "18.0.0", "react-dom": "18.1.0",
"react-native": "0.69.6", "react-native": "0.70.5",
"react-native-svg": "12.3.0", "react-native-svg": "13.4.0",
"react-native-web": "~0.18.7", "react-native-web": "~0.18.10",
"yoshiki": "*" "yoshiki": "*"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.19.6", "@babel/core": "^7.20.2",
"@types/react": "~18.0.14", "@types/react": "~18.0.25",
"@types/react-native": "~0.69.1", "@types/react-native": "~0.70.6",
"typescript": "~4.8.4" "typescript": "^4.8.4"
}, },
"installConfig": { "installConfig": {
"hoistingLimits": "workspaces" "hoistingLimits": "workspaces"

View File

@@ -22,5 +22,8 @@
"eslint": "8.27.0", "eslint": "8.27.0",
"eslint-config-next": "13.0.3", "eslint-config-next": "13.0.3",
"typescript": "4.8.4" "typescript": "4.8.4"
},
"installConfig": {
"hoistingLimits": "workspaces"
} }
} }

View File

@@ -6,6 +6,8 @@
"license": "MIT", "license": "MIT",
"private": true, "private": true,
"scripts": { "scripts": {
"next": "yarn workspace next-example dev",
"expo": "yarn workspace expo-example dev",
"lint": "eslint . --ext .ts,.tsx " "lint": "eslint . --ext .ts,.tsx "
}, },
"workspaces": { "workspaces": {
@@ -25,14 +27,14 @@
"tsdoc": true "tsdoc": true
}, },
"devDependencies": { "devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.0", "@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.0", "@typescript-eslint/parser": "^5.42.1",
"eslint": "8.19.0", "eslint": "8.27.0",
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1", "eslint-plugin-header": "^3.1.1",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38", "prettier-plugin-jsdoc": "^0.4.2",
"typescript": "4.7.4" "typescript": "4.8.4"
}, },
"packageManager": "yarn@3.2.4" "packageManager": "yarn@3.2.4"
} }

View File

@@ -19,8 +19,8 @@
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^18.11.9", "@types/node": "^18.11.9",
"@types/react": "^18.0.24", "@types/react": "^18.0.25",
"@types/react-native": "~0.69.1", "@types/react-native": "~0.70.6",
"react": "^18.2.0", "react": "^18.2.0",
"typescript": "^4.8.4" "typescript": "^4.8.4"
} }

6
packages/yoshiki/web.ts Normal file
View File

@@ -0,0 +1,6 @@
//
// Copyright (c) Zoe Roux and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.
//
export * from "./src";

1353
yarn.lock

File diff suppressed because it is too large Load Diff