@luma.gl/constants 9.0.0-alpha.9 → 9.0.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +3 -1
- package/README.md +1 -1
- package/dist/dist.dev.js +686 -0
- package/dist/dist.min.js +9 -0
- package/dist/index.cjs +677 -0
- package/dist/index.cjs.map +7 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -2
- package/dist/{constants-enum.d.ts → webgl-constants.d.ts} +209 -56
- package/dist/webgl-constants.d.ts.map +1 -0
- package/dist/webgl-constants.js +926 -0
- package/dist/webgl-types.d.ts +460 -0
- package/dist/webgl-types.d.ts.map +1 -0
- package/dist/webgl-types.js +5 -0
- package/dist.min.js +9 -0
- package/package.json +21 -7
- package/src/index.ts +28 -1
- package/src/{constants-enum.ts → webgl-constants.ts} +247 -92
- package/src/webgl-types.ts +767 -0
- package/dist/bundle.d.ts +0 -2
- package/dist/bundle.d.ts.map +0 -1
- package/dist/bundle.js +0 -7
- package/dist/bundle.js.map +0 -1
- package/dist/constants-enum.d.ts.map +0 -1
- package/dist/constants-enum.js +0 -669
- package/dist/constants-enum.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/src/bundle.ts +0 -4
package/LICENSE
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
luma.gl is provided under the MIT license
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 vis.gl contributors
|
|
2
4
|
|
|
3
5
|
This software includes parts initially developed by Uber and open sourced under MIT license.
|
|
4
6
|
Copyright (c) 2015 Uber Technologies, Inc.
|