Fix/0.5-compatability-tests (#293)

* Working changes

* Fix window undefined bug by updating lib

* Fix TransformControlsImpl import

* Fix compatibility tests>simple debuggable examples
This commit is contained in:
Elliot 2022-09-13 15:37:39 -04:00 committed by GitHub
parent 494c60d0c3
commit 735bd983a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 572 additions and 574 deletions

View file

@ -20,14 +20,20 @@
"directory": "packages/r3f"
},
"main": "dist/index.js",
"module": "dist/index.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js",
"./dist/extension": "./dist/extension/index.js"
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./dist/extension": {
"import": "./dist/extension/index.esm.js",
"require": "./dist/extension/index.js"
}
},
"scripts": {
"prepack": "yarn run build",
@ -56,7 +62,7 @@
"react-shadow": "^19.0.3",
"react-use-measure": "^2.0.4",
"reakit": "^1.3.8",
"styled-components": "^5.3.0",
"styled-components": "^5.3.5",
"typescript": "^4.4.2",
"zustand": "^3.5.1"
},