omi/site/omis-src
dntzhang b9f0d6ae66 chore: change omijs.org to tencent.github.io/omi/ 2019-10-18 11:17:16 +08:00
..
config init omis site src 2019-07-21 09:49:45 +08:00
public docs: update site 2019-08-29 09:57:46 +08:00
scripts init omis site src 2019-07-21 09:49:45 +08:00
src chore: change omijs.org to tencent.github.io/omi/ 2019-10-18 11:17:16 +08:00
.eslintrc init omis site src 2019-07-21 09:49:45 +08:00
.gitignore init omis site src 2019-07-21 09:49:45 +08:00
README.md init omis site src 2019-07-21 09:49:45 +08:00
package.json init omis site src 2019-07-21 09:49:45 +08:00

README.md

Develop

npm install
npm start

Release

npm run build

Eslint + Prettier

npm run fix

Directory description

├─ config
├─ public
├─ scripts
├─ src
│  ├─ assets
│  ├─ elements    //Store all custom elements
│  ├─ store       //Store all this store of pages
│  ├─ admin.js    //Entry js of compilerwill build to admin.html
│  └─ index.js    //Entry js of compilerwill build to index.html

Build

About compiled website URL

Such as in windows:

"scripts": {
  "start": "node scripts/start.js",
  "_build": "node scripts/build.js",
  "build":"set PUBLIC_URL=https://fe.wxpay.oa.com/dv&& npm run _build"
}

In mac os:

"scripts": {
    "start": "node scripts/start.js",
    "_build": "node scripts/build.js",
    "build":"PUBLIC_URL=https://fe.wxpay.oa.com/dv npm run _build",
    "fix": "eslint src --fix"
  },

If you only want to use relative addresses:

"build":"set PUBLIC_URL=.&& npm run _build"  //windows
"build":"PUBLIC_URL=. npm run _build",       //mac os

Docs

Cli's auto-created project scaffolding is based on a single-page create-react-app to be converted into a multi-page one, with configuration issues to see create-react-app user guide