Skip to content

Commit

Permalink
revert back to yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
robertKozik committed Jan 16, 2024
1 parent 849ad03 commit 1d0bcd8
Show file tree
Hide file tree
Showing 4 changed files with 13,894 additions and 23,309 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
path: ~/.yarn
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
${{ runner.os }}-yarn-
- name: Setup Node
uses: actions/setup-node@v1
Expand All @@ -26,16 +26,16 @@ jobs:
run: npm ci
working-directory: ./WebExample

- run: npm ci
- run: yarn install --immutable

- run: npm run lint
- run: yarn lint
env:
CI: true


- name: Verify there's no Prettier diff
run: |
npm run prettier -- --loglevel silent
yarn prettier --loglevel silent
if ! git diff --name-only --exit-code; then
# shellcheck disable=SC2016
echo 'Error: Prettier diff detected! Please run `npm run prettier` and commit the changes.'
Expand Down
12 changes: 2 additions & 10 deletions example/ios/LiveMarkdownExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -600,11 +600,7 @@
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -674,11 +670,7 @@
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-Wl",
"-ld_classic",
);
OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down
Loading

0 comments on commit 1d0bcd8

Please sign in to comment.