@luma.gl/shadertools 9.0.7 → 9.0.8

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.
@@ -1,4 +1,4 @@
1
- import { ShaderModule } from "../...js";
1
+ import { ShaderModule } from "../../lib/shader-module/shader-module.js";
2
2
  type ProjectionProps = {
3
3
  modelMatrix?: readonly number[];
4
4
  viewMatrix?: readonly number[];
@@ -1 +1 @@
1
- {"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../src/modules-webgl1/project/project.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,YAAY,EAAC,iBAAc;AAEnC,KAAK,eAAe,GAAG;IACrB,WAAW,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC/B,gBAAgB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,mBAAmB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACzC,CAAC;AAiHF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,YAAY,CAAC,eAAe,EAAE,eAAe,CAKlE,CAAC"}
1
+ {"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../../src/modules-webgl1/project/project.ts"],"names":[],"mappings":"AAMA,OAAO,EAAC,YAAY,EAAC,iDAA8C;AAEnE,KAAK,eAAe,GAAG;IACrB,WAAW,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAChC,UAAU,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC/B,gBAAgB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IACrC,mBAAmB,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACzC,CAAC;AAiHF;;GAEG;AACH,eAAO,MAAM,OAAO,EAAE,YAAY,CAAC,eAAe,EAAE,eAAe,CAKlE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luma.gl/shadertools",
3
- "version": "9.0.7",
3
+ "version": "9.0.8",
4
4
  "description": "Shader module system for luma.gl",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -52,5 +52,5 @@
52
52
  "@math.gl/core": "^4.0.0",
53
53
  "@math.gl/types": "^4.0.0"
54
54
  },
55
- "gitHead": "776cf7b8d758df78dba231f4ef7b9b9693f10373"
55
+ "gitHead": "40aa2ca078c5ff2d52445dce6a9efa982fba67a2"
56
56
  }
@@ -4,7 +4,7 @@
4
4
 
5
5
  import {Matrix4} from '@math.gl/core';
6
6
  import {glsl} from '../../lib/glsl-utils/highlight';
7
- import {ShaderModule} from '../..';
7
+ import {ShaderModule} from '../../lib/shader-module/shader-module';
8
8
 
9
9
  type ProjectionProps = {
10
10
  modelMatrix?: readonly number[];