Skip to content

Commit

Permalink
hoist and local deps #2
Browse files Browse the repository at this point in the history
  • Loading branch information
trydofor committed Apr 8, 2024
1 parent 543c6ee commit 217661f
Show file tree
Hide file tree
Showing 8 changed files with 3,339 additions and 11,369 deletions.
14,629 changes: 3,290 additions & 11,339 deletions package-lock.json

Large diffs are not rendered by default.

32 changes: 30 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,35 @@
{
"name": "professional-razor",
"version": "1.0.0-beta.100",
"private": true,
"version": "1.0.0-beta.100",
"description": "Use front-end tech (Vue/Css/Ts) to build multi-platform from one codebase, suitable for small team and app to write logic once, run anywhere.",
"workspaces": ["packages/*"]
"workspaces": ["packages/*"],
"dependencies": {
"@capacitor/app": "5.0.7",
"@capacitor/core": "5.7.4",
"@capacitor/haptics": "5.0.7",
"@capacitor/keyboard": "5.0.8",
"@capacitor/status-bar": "5.0.7",
"@ionic/vue": "^7.0.0",
"@ionic/vue-router": "^7.0.0",
"ionicons": "^7.0.0",
"vue": "^3.3.0",
"vue-router": "^4.2.0"
},
"devDependencies": {
"@capacitor/cli": "5.7.4",
"@vitejs/plugin-legacy": "^5.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.3.0",
"cypress": "^13.5.0",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^22.1.0",
"terser": "^5.4.0",
"typescript": "^5.1.6",
"vite": "^5.0.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.0.24"
}
}
4 changes: 1 addition & 3 deletions packages/front-desktop/electron/electron-builder.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
"capacitor.config.*",
"app/**/*"
],
"publish": {
"provider": "github"
},

"nsis": {
"allowElevation": true,
"oneClick": false,
Expand Down
1 change: 1 addition & 0 deletions packages/front-desktop/electron/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"compileOnSave": true,
"include": ["./src/**/*", "./capacitor.config.ts", "./capacitor.config.js"],
"compilerOptions": {
"skipLibCheck": true,
"outDir": "./build",
"importHelpers": true,
"target": "ES2017",
Expand Down
7 changes: 4 additions & 3 deletions packages/front-desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "front-desktop",
"private": true,
"version": "0.0.1",
"version": "1.0.0-beta.100",
"description": "front-user desktop (web/win/lin/mac)",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -20,6 +21,7 @@
"@capacitor/status-bar": "5.0.7",
"@ionic/vue": "^7.0.0",
"@ionic/vue-router": "^7.0.0",
"@razor/front-shared": "file:../front-shared",
"ionicons": "^7.0.0",
"vue": "^3.3.0",
"vue-router": "^4.2.0"
Expand All @@ -39,6 +41,5 @@
"vite": "^5.0.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.0.24"
},
"description": "An Ionic project"
}
}
7 changes: 4 additions & 3 deletions packages/front-mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "front-mobile",
"private": true,
"version": "0.0.1",
"version": "1.0.0-beta.100",
"description": "front-user mobile (web/android/ios)",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -21,6 +22,7 @@
"@capacitor/status-bar": "5.0.7",
"@ionic/vue": "^7.0.0",
"@ionic/vue-router": "^7.0.0",
"@razor/front-shared": "file:../front-shared",
"ionicons": "^7.0.0",
"vue": "^3.3.0",
"vue-router": "^4.2.0"
Expand All @@ -40,6 +42,5 @@
"vite": "^5.0.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.0.24"
},
"description": "An Ionic project"
}
}
15 changes: 6 additions & 9 deletions packages/front-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
{
"name": "@razor/front-shared",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
"private": true,
"version": "1.0.0-beta.100",
"description": "front-user shared (lib/ui)",
"dependencies": {
"@razor/shared": "file:../shared"
}
}
13 changes: 3 additions & 10 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
{
"name": "@razor/shared",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC"
"private": true,
"version": "1.0.0-beta.100",
"description": "common shared (lib/ui)"
}

0 comments on commit 217661f

Please sign in to comment.