webvr js meetup initial commit

This commit is contained in:
Senad Uka
2017-03-11 15:22:17 +01:00
commit 3f640b55db
761 changed files with 264174 additions and 0 deletions

21
node_modules/webvr-polyfill/CONTRIBUTING generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# Building
This project uses browserify to manage dependencies and build. Watchify is
especially convenient to preserve the write-and-reload model of development.
This package lives in the npm index.
Relevant commands:
npm install - installs the dependencies.
npm build - builds the module.
npm watch - auto-builds the module whenever any source changes.
# Updating the npm entry
Once changes are made, a new version can be published to the index using the
following commands:
npm version <NEW_VERSION>
npm publish
git push --tags