Skip to content

Commit 88ca14e

Browse files
committed
Update homepage
1 parent 61736e6 commit 88ca14e

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<p align="center"><a href="http://seinjs.com" target="_blank"><img src="./logo.png" alt="SEIN.JS" width="512"/></a></p>
1+
<p align="center"><a href="https://seinjs.com" target="_blank"><img src="./logo.png" alt="SEIN.JS" width="512"/></a></p>
22
<h3 align="center">Modern web game engine</h3>
3-
<p align="center">Homepage: <a href="http://seinjs.com" target="_blank">seinjs.com</a></p>
3+
<p align="center">Homepage: <a href="https://seinjs.com" target="_blank">seinjs.com</a></p>
44

55
### Workflow
66

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Lightmap
22

3-
Sein也支持Lightmap,用静态的方式提供强大的光影信息,如果有需要,请见[烘焙](http://seinjs.com/cn/guide/baking)
3+
Sein也支持Lightmap,用静态的方式提供强大的光影信息,如果有需要,请见[烘焙](../../guide/baking)

demo/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
</head>
1313
<body>
1414
<div id="container"></div>
15-
<script src="/assets/cannon.js"></script>
15+
<script src="/assets/cannon.min.js"></script>
1616
</body>
1717
</html>

demo/webpack.demo.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const config = Object.assign({}, commonConfig, {
3737
});
3838
config.plugins.push(
3939
new CleanWebpackPlugin(
40-
['*'],
40+
['*', '!\.git'],
4141
{root: outPath}
4242
),
4343
new CopyWebpackPlugin(

gen-doc.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77
const typedoc = require('typedoc');
88
const path = require('path');
9+
const fs = require('fs');
910

1011
const sources = [
1112
path.resolve(__dirname, './src')

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"prepublishOnly": "bash ./prepublish.sh",
1313
"gen-doc": "node ./gen-doc.js",
1414
"dev": "concurrently \"npm run hilo3d-watch\" \"npm run gen-doc && node ./demo/server.dev.js --max-old-space-size=4096\"",
15-
"demo-build": "npm run hilo3d-build && npm run gen-doc && webpack -p --config ./demo/webpack.demo.config.js"
15+
"demo-build": "npm run hilo3d-build && npm run gen-doc && webpack -p --config ./demo/webpack.demo.config.js && cp ./dist/index.html ./dist/404.html"
1616
},
1717
"keywords": [
1818
"Game engine",
@@ -106,4 +106,4 @@
106106
"webpack": "^3.12.0",
107107
"webpack-dev-server": "^2.10.1"
108108
}
109-
}
109+
}

0 commit comments

Comments
 (0)