Skip to content

Commit

Permalink
Allow imports of non-js static files
Browse files Browse the repository at this point in the history
  • Loading branch information
ggetz committed Aug 22, 2022
1 parent ec783fe commit 6706e1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

- `Model` can now classify other assets with a given `classificationType`. [#10623](https://github.com/CesiumGS/cesium/pull/10623)
- `Model` now supports back face culling for point clouds. [#10703](https://github.com/CesiumGS/cesium/pull/10703)
- Export asset files such as CSS in `package.json`, allowing bundlers to import without additional configuration. [#9212](https://github.com/CesiumGS/cesium/pull/9212)

##### Fixes :wrench:

Expand Down
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
"types": "./Source/Cesium.d.ts",
"exports": {
"./package.json": "./package.json",
"./Source/*": "./Source/*",
"./Source/*.js": null,
"./Build/*": "./Build/*",
"./Build/*.js": null,
".": {
"require": "./index.cjs",
"import": "./Source/Cesium.js"
Expand Down

0 comments on commit 6706e1b

Please sign in to comment.