更换了 打包方式的说明

This commit is contained in:
hawk86104 2024-02-01 08:50:46 +08:00
parent c2f842810b
commit e036a5e760
4 changed files with 9 additions and 8 deletions

3
.gitignore vendored
View File

@ -15,4 +15,5 @@ dist
#不排除 排除alienkitty 和 oimophysics 基于:https://github.com/alienkitty/alien.js 库
#因为这两个库从npm包很难下载且有的下架了
#!/node_modules/@alienkitty/
#!/node_modules/oimophysics/
#!/node_modules/oimophysics/
package-lock.json

View File

@ -98,15 +98,15 @@ ThreeJS大名鼎鼎的基于浏览器渲染JavaScript语言的3D库。<br/><b
2、cd 到项目根目录
3、yarn //安装依赖
3、npm install //安装依赖
4、yarn pre.dev // 预览 下的调试模式
4、npm run pre.dev // 预览 下的调试模式
5、yarn dev // 自己项目 下的调试模式
5、npm run dev // 自己项目 下的调试模式
6、yarn pre.build //预览 下的编译打包
6、npm run pre.build //预览 下的编译打包
7、yarn build //自己项目 下的编译打包
7、npm run build //自己项目 下的编译打包
```
![展示](./preview/compileMode.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -4,7 +4,7 @@
* @Autor: 地虎降天龙
* @Date: 2023-10-16 10:53:09
* @LastEditors: 地虎降天龙
* @LastEditTime: 2024-01-29 19:19:26
* @LastEditTime: 2024-02-01 08:49:52
*/
// 放工具函数
const findStringBetween = (str) => {
@ -17,7 +17,7 @@ const findStringBetween = (str) => {
}
export const getPluginsConfig = () => {
// 获得插件列表 根据插件目录
const modulePaths = import.meta.globEager('PLS/**/config.js');
const modulePaths = import.meta.glob('PLS/**/config.js', { eager: true })
const config = {};
for (const path of Object.keys(modulePaths)) {
const name = findStringBetween(path)