mirror of
https://gitee.com/ice-gl/icegl-three-vue-tres.git
synced 2025-04-05 06:22:43 +08:00
更换了 打包方式的说明
This commit is contained in:
parent
c2f842810b
commit
e036a5e760
3
.gitignore
vendored
3
.gitignore
vendored
@ -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
|
||||
|
10
README.md
10
README.md
@ -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 //自己项目 下的编译打包
|
||||
```
|
||||

|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 64 KiB After Width: | Height: | Size: 52 KiB |
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user