Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
CLIENT_DIRS=$(bash ./scripts/get-release-dirs.sh client)
CHANGELOG=$(git log --pretty=format:"[%h] %s %an" --date=short client-v${PREV_VERSION}..HEAD -- ${CLIENT_DIRS})
npm i --ignore-scripts
npm version patch -w @audius/web -w audius-mobile-client --include-workspace-root --no-git-tag-version
npm version patch -w @audius/web -w @audius/mobile --include-workspace-root --no-git-tag-version
git add .
VERSION=$(jq -r .version ./package.json)
MESSAGE="Audius Client (Web and Mobile) v${VERSION}
Expand Down
6 changes: 3 additions & 3 deletions .circleci/src/commands/@mobile-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ mobile-prepare-ios:
echo export SENTRY_BINARY=/usr/local/bin/sentry-cli >> "$BASH_ENV"
- run:
name: Build dependencies
command: npx turbo run build --filter=audius-mobile-client
command: npx turbo run build --filter=@audius/mobile
- run:
name: create bundle
command: cd packages/mobile && npx turbo run bundle:ios
Expand Down Expand Up @@ -176,7 +176,7 @@ mobile-prepare-android:
command: cd packages/mobile/android && sudo bundle update fastlane
- run:
name: Build dependencies
command: npx turbo run build --filter=audius-mobile-client
command: npx turbo run build --filter=@audius/mobile
- run:
name: fetch app fastlane json config to upload to play store
command: |
Expand Down Expand Up @@ -296,7 +296,7 @@ mobile-release-saga-dapp-store:
pnpm install
- run:
name: Build dependencies
command: npx turbo run build --filter=audius-mobile-client
command: npx turbo run build --filter=@audius/mobile
- run:
name: Install solana
command: |
Expand Down
2 changes: 1 addition & 1 deletion .circleci/src/jobs/@mobile-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mobile-init:
- run:
name: lint & typecheck
command: |
npx turbo run verify --filter=audius-mobile-client
npx turbo run verify --filter=@audius/mobile

- persist_to_workspace:
root: ./
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

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

18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@
"desktop:prod": "concurrently -k 'BROWSER=none npm run start:prod -w @audius/web' 'wait-on http://0.0.0.0:3002 && npm run electron:localhost -w @audius/web -- 3002'",
"desktop:stage": "concurrently -k 'BROWSER=none npm run start:stage -w @audius/web' 'wait-on http://0.0.0.0:3001 && npm run electron:localhost -w @audius/web -- 3001'",
"MOBILE=====================================": "",
"android:dev": "npm run android:dev -w audius-mobile-client",
"android:prod": "npm run android:prod -w audius-mobile-client",
"android:stage": "npm run android:stage -w audius-mobile-client",
"ios:dev": "npm run ios:dev -w audius-mobile-client",
"ios:prod": "npm run ios:prod -w audius-mobile-client",
"ios:stage": "npm run ios:stage -w audius-mobile-client",
"mobile": "npm run start -w audius-mobile-client",
"mobile:clean": "npm run clean:auto -w audius-mobile-client && npm run clean:modules",
"mobile:clear-cache": "watchman watch-del-all && npm run start -w audius-mobile-client -- --reset-cache",
"android:dev": "npm run android:dev -w @audius/mobile",
"android:prod": "npm run android:prod -w @audius/mobile",
"android:stage": "npm run android:stage -w @audius/mobile",
"ios:dev": "npm run ios:dev -w @audius/mobile",
"ios:prod": "npm run ios:prod -w @audius/mobile",
"ios:stage": "npm run ios:stage -w @audius/mobile",
"mobile": "npm run start -w @audius/mobile",
"mobile:clean": "npm run clean:auto -w @audius/mobile && npm run clean:modules",
"mobile:clear-cache": "watchman watch-del-all && npm run start -w @audius/mobile -- --reset-cache",
"EMBED======================================": "",
"embed:prod": "npm run start:prod -w embed",
"embed:stage": "npm run start:stage -w embed",
Expand Down
4 changes: 2 additions & 2 deletions packages/mobile/.hooks/pre-push.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"steps": [
{
"name": "typecheck",
"command": "npm run typecheck -w audius-mobile-client"
"command": "npm run typecheck -w @audius/mobile"
},
{
"name": "lint",
"command": "npm run lint -w audius-mobile-client"
"command": "npm run lint -w @audius/mobile"
}
]
}
4 changes: 2 additions & 2 deletions packages/mobile/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ To debug the app follow the instructions [here](https://reactnative.dev/docs/deb
You can also start react and redux devtools with

```
npm run react-devtools -w audius-mobile-client
npm run react-devtools -w @audius/mobile
```

```
npm run redux-devtools -w audius-mobile-client
npm run redux-devtools -w @audius/mobile
```

On Android, you can use the adb Android Studio tool or
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "audius-mobile-client",
"name": "@audius/mobile",
"version": "1.5.77",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/src/types/declarations.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ declare module '@react-native-masked-view/masked-view' {
export default class MaskedViewComponent extends React.Component<MaskedViewProps> {}
}

// Remove everything below when audius-mobile-client is no longer dependent on @audius/web
// Remove everything below when @audius/mobile is no longer dependent on @audius/web
// These are needed because we currently have to include @audius/web in the typechecking
declare module '*.module.css' {
const value: any
Expand Down