Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
dfedebf
Merge branch 'release/v2.1.0' into develop
troberts-28 Feb 20, 2025
be2553d
Merge branch 'fix/ts-build-issue' into develop
troberts-28 Feb 20, 2025
b615918
Merge branch 'patch/v2.1.1' into develop
troberts-28 Mar 31, 2025
796356d
support days
nicholasareed Apr 19, 2025
fcf83d7
days added to README, test with days
nicholasareed Apr 19, 2025
ee38f01
hideDays default true
nicholasareed Apr 19, 2025
aab457a
Added decelerationRate prop
Off2Race Apr 24, 2025
c32e863
Fixed eslint issues with new decelerationRate prop
Off2Race Apr 24, 2025
4174cf5
fix broken test (resulting from change to default for hideDays)
troberts-28 May 9, 2025
22a1f41
Merge branch 'pr-55' into develop
troberts-28 May 9, 2025
898bb5c
Merge branch 'develop' into feature/deceleration-rate-prop
troberts-28 May 9, 2025
d7abbf6
Merge pull request #57 from Off2Race/feature/deceleration-rate-prop
troberts-28 May 9, 2025
aaca0d3
⬆️ upgrade expo sdk in expo example
troberts-28 May 9, 2025
e185586
⬆️ upgrade to yarn v4.9.1
troberts-28 May 19, 2025
6dfe7d6
🧑‍💻 make eslint work in `example-expo`
troberts-28 May 19, 2025
be60f28
☠️ deprecate expo-specific `Audio` and `Haptics` props in place of ge…
troberts-28 May 19, 2025
4f2fad9
📝 finish updating README to reflect changes to haptic/audio support
troberts-28 May 19, 2025
d138d71
📝 add JSDocs to all utility functions
troberts-28 May 19, 2025
4b51e5f
🚚 move components into their own file from index file
troberts-28 May 19, 2025
7f201d5
🧽 better typing of `DurationScroll` callbacks + remove problematic `C…
troberts-28 May 19, 2025
8269979
⚙️ move jest config to config file + add react/react-native to dev de…
troberts-28 May 19, 2025
818cf88
Merge branch 'maintenance/expo-sdk-upgrade' into develop
troberts-28 May 19, 2025
29da23f
🧽 clean up index.ts files
troberts-28 May 19, 2025
3daec59
🐛 fix examples ts issue
troberts-28 May 19, 2025
a87449d
📝 add missing section to README on `react- native-audio-api`
troberts-28 May 19, 2025
9104b06
🧵 comment out audio feedback in Expo example to enable Expo Go suppor…
troberts-28 May 19, 2025
a111c9d
🧽 remove duplicated deps from monorepo `package.json` files
troberts-28 May 19, 2025
22439f6
📌 fix `react-test-renderer` version issue
troberts-28 May 19, 2025
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 .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install react
run: yarn add [email protected] -D
- name: Install react-native
run: yarn add react-native@0.73.1 -D
run: yarn add react-native@0.72.0 -D
- name: Install dependencies
run: yarn install
- name: Test
Expand Down
934 changes: 0 additions & 934 deletions .yarn/releases/yarn-4.6.0.cjs

This file was deleted.

948 changes: 948 additions & 0 deletions .yarn/releases/yarn-4.9.1.cjs

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.6.0.cjs
nmHoistingLimits: workspaces

nmHoistingLimits: workspaces # disable hoisting for all workspaces (causes issues with bare example)
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.9.1.cjs
379 changes: 227 additions & 152 deletions README.md

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
module.exports = {
presets: ["module:metro-react-native-babel-preset"],
plugins: [
["@babel/plugin-transform-flow-strip-types", { loose: true }],
["@babel/plugin-transform-class-properties", { loose: true }],
["@babel/plugin-transform-private-methods", { loose: true }],
],
};
1 change: 1 addition & 0 deletions examples/example-bare/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ local.properties
.cxx/
*.keystore
!debug.keystore
.kotlin/

# node.js
#
Expand Down
263 changes: 0 additions & 263 deletions examples/example-bare/App.js

This file was deleted.

Loading