-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove threejs files from the repo
- Loading branch information
1 parent
23691ff
commit a0e450f
Showing
9 changed files
with
587 additions
and
1,330 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import replace from 'rollup-plugin-replace'; | ||
|
||
export default function(options) { | ||
|
||
return replace(Object.assign({ | ||
'include': ['node_modules/three/examples/js/**'], | ||
'delimiters': ['', ''], | ||
'THREE.VRControls =': "var THREE = require('three');var VRControls;\nmodule.exports = VRControls =", | ||
'THREE.VREffect =': "var THREE = require('three');var VREffect;\nmodule.exports = VREffect =", | ||
'THREE.VRControls': 'VRControls', | ||
'THREE.VREffect': 'VREffect' | ||
}, options || {})); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.