Skip to content

Commit

Permalink
🚀 RELEASE: v1.2.13
Browse files Browse the repository at this point in the history
- support `build.outDir` #18
- fix buid error on windows when rebuildCesium:true #17
- add build test ci, cool! by @Lunagod
- set chunkSizeWarningLimit to 5000 when rebuildCesium
- clean code, add some commants.

Thanks @Lunagod and @1sm23
  • Loading branch information
nshen committed Jan 13, 2022
1 parent b3c0b31 commit 3e39226
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"devDependencies": {
"cesium": "^1.88.0",
"vite": "^2.7.1",
"vite-plugin-cesium": "link:.."
"vite-plugin-cesium": "^1.2.13"
}
}
2 changes: 1 addition & 1 deletion demo/vite.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from 'vite';
import cesium from 'vite-plugin-cesium';
export default defineConfig({
plugins: [cesium({ rebuildCesium: true })]
plugins: [cesium()]
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-cesium",
"version": "1.2.12",
"version": "1.2.13",
"description": "Cesium library plugin for Vite",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

2 comments on commit 3e39226

@1sm23
Copy link

@1sm23 1sm23 commented on 3e39226 Jan 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

demo这个 link 是引用本地的,可以不改

@nshen
Copy link
Owner Author

@nshen nshen commented on 3e39226 Jan 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

demo这个 link 是引用本地的,可以不改

我想保证这个 demo 文件夹单独下载可用, 因为记得在哪写过最简单的使用方法是下载压缩包,直接解压出 demo 运行。

Please sign in to comment.