Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ lib/
*.tgz
node_modules/
npm-debug.log
package-lock.json
yarn-error.log

# Editors:
Expand Down
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
legacy-peer-deps=true
ignore-scripts=true
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ language: node_js
node_js:
- "16"
install:
- yarn install --frozen-lockfile
- yarn prepare
- npm ci
- npm run prepare
script:
- yarn lint
- yarn test
- npm run lint
- npm run test
1 change: 0 additions & 1 deletion .yarnrc

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Disklet requires a `Promise` implementation, but is plain ES5 otherwise. The lib

## React Native

To use this library on React Native, simply run `react-native link disklet` after installing via yarn / NPM.
To use this library on React Native, simply run `react-native link disklet` after installing via npm install / NPM.

## Legacy API

Expand Down
2 changes: 2 additions & 0 deletions ReactNativeDiskletTest/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
legacy-peer-deps=true
ignore-scripts=true
2 changes: 1 addition & 1 deletion ReactNativeDiskletTest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

This app runs Disklet unit tests on React Native.

To launch the tests, first run `yarn install` in this folder to set up the dependencies, and then run either `yarn android` or `yarn ios`.
To launch the tests, first run `npm install` in this folder to set up the dependencies, and then run either `npm run android` or `npm run ios`.
Comment thread
cursor[bot] marked this conversation as resolved.

If you want to edit the Disklet library while using this app, run the `update-rn-test.sh` script located in the outer folder to copy your changes into `node_modules`.
Loading
Loading