mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 06:12:51 +00:00
more release stuff
This commit is contained in:
@@ -31,7 +31,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
hooks: {
|
hooks: {
|
||||||
'before:init': ['pnpm run lint:check', 'pnpm run typecheck'],
|
'before:init': ['turbo run lint:check'],
|
||||||
'before:github:release': 'pnpm run build:signed:apk',
|
'before:github:release': 'pnpm run build:signed:apk',
|
||||||
|
|
||||||
'after:release': 'echo "Released ${npm.name} v${version}"',
|
'after:release': 'echo "Released ${npm.name} v${version}"',
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
hooks: {
|
hooks: {
|
||||||
'before:init': ['pnpm run lint:check', 'pnpm run test'],
|
'before:init': ['turbo run lint:check'],
|
||||||
'before:npm:release': 'pnpm run build',
|
'before:npm:release': 'turbo run build:android build:ios',
|
||||||
'after:release': 'echo "Published ${npm.name} v${version} to npm"',
|
'after:release': 'echo "Published ${npm.name} v${version} to npm"',
|
||||||
},
|
},
|
||||||
} satisfies Config;
|
} satisfies Config;
|
||||||
|
|||||||
@@ -47,7 +47,8 @@
|
|||||||
"fmt:rust:check": "cd rust/uniffi-russh && just fmt-check",
|
"fmt:rust:check": "cd rust/uniffi-russh && just fmt-check",
|
||||||
"update-rust": "cd rust/uniffi-russh && just update-deps",
|
"update-rust": "cd rust/uniffi-russh && just update-deps",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"release": "release-it --only-version"
|
"release": "release-it",
|
||||||
|
"release:dry": "release-it --dry-run"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"react-native",
|
"react-native",
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { type Config } from 'release-it';
|
import { type Config } from 'release-it';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
git: {
|
git: {
|
||||||
@@ -35,8 +35,8 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
hooks: {
|
hooks: {
|
||||||
'before:init': ['pnpm run lint:check', 'pnpm run test'],
|
'before:init': ['turbo run lint:check'],
|
||||||
'before:npm:release': 'pnpm run build',
|
'before:npm:release': 'turbo run build',
|
||||||
'after:release': 'echo "Published ${npm.name} v${version} to npm"',
|
'after:release': 'echo "Published ${npm.name} v${version} to npm"',
|
||||||
},
|
},
|
||||||
} satisfies Config;
|
} satisfies Config;
|
||||||
|
|||||||
@@ -15,7 +15,9 @@
|
|||||||
"build:main": "tsc -b && vite build",
|
"build:main": "tsc -b && vite build",
|
||||||
"build:internal": "tsc -b && vite build --config vite.config.internal.ts",
|
"build:internal": "tsc -b && vite build --config vite.config.internal.ts",
|
||||||
"dev": "vite --config vite.config.internal.ts",
|
"dev": "vite --config vite.config.internal.ts",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview",
|
||||||
|
"release": "release-it",
|
||||||
|
"release:dry": "release-it --dry-run"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"js-base64": "^3.7.8"
|
"js-base64": "^3.7.8"
|
||||||
|
|||||||
Reference in New Issue
Block a user