Skip to content

Commit

Permalink
chore: vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyJasonBennett committed Jul 7, 2023
1 parent da48393 commit a8ee00b
Show file tree
Hide file tree
Showing 6 changed files with 487 additions and 4 deletions.
3 changes: 1 addition & 2 deletions packages/fiber/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-three/fiber",
"version": "0.0.0-nylon.2",
"version": "0.0.0-nylon.3",
"description": "A React renderer for Threejs",
"keywords": [
"react",
Expand Down Expand Up @@ -47,7 +47,6 @@
"its-fine": "^1.0.6",
"react-reconciler": "^0.27.0",
"react-use-measure": "^2.1.1",
"react-nylon": "./react-nylon-v0.0.0.tgz",
"scheduler": "^0.21.0",
"suspend-react": "^0.1.3",
"zustand": "^3.7.1"
Expand Down
Binary file removed packages/fiber/react-nylon-v0.0.0.tgz
Binary file not shown.
Binary file removed packages/fiber/react-three-fiber-v0.0.0-nylon.2.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/fiber/src/core/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ reconciler.injectIntoDevTools({
})

// @ts-ignore
export { act } from 'react-nylon'
export { act } from '../react-nylon'

export * from './hooks'
export {
Expand Down
2 changes: 1 addition & 1 deletion packages/fiber/src/core/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as THREE from 'three'
import { UseBoundStore } from 'zustand'
import Reconciler from 'react-reconciler'
// @ts-ignore
import _Reconciler from 'react-nylon'
import _Reconciler from '../react-nylon'
import { unstable_IdlePriority as idlePriority, unstable_scheduleCallback as scheduleCallback } from 'scheduler'
import {
is,
Expand Down
Loading

0 comments on commit a8ee00b

Please sign in to comment.