Go to file
thinkinggis a9b406fea1 feat(layers): add polygon3d , pointimagelayer 2019-10-30 10:07:17 +08:00
.github feat(src): threejs render 2018-10-23 19:32:42 +08:00
.storybook feat(layer): point layer 2019-10-29 17:33:37 +08:00
.vscode build: upgrade TS, babel plugin and to support optional chaining 2019-10-25 14:17:59 +08:00
dev-docs feat(multi-pass): support TAA(Temporal Anti-Aliasing) 2019-10-29 14:42:41 +08:00
jest refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
packages feat(layers): add polygon3d , pointimagelayer 2019-10-30 10:07:17 +08:00
stories feat(layers): add polygon3d , pointimagelayer 2019-10-30 10:07:17 +08:00
.editorconfig refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.gitignore refactor(@l7/core): 重构 MultiPassRenderer & PostProcessor 2019-10-12 10:42:50 +08:00
.prettierrc refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
.stylelintrc refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
README.md refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
babel.config.js feat(layer): point layer 2019-10-29 17:33:37 +08:00
commitlint.config.js refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
jest.config.js refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
lerna.json refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
package-lock.json feat(layer): point layer 2019-10-29 17:33:37 +08:00
package.json feat(layer): point layer 2019-10-29 17:33:37 +08:00
tsconfig.build.json feat(layer): point layer 2019-10-29 17:33:37 +08:00
tsconfig.json feat(picking): support PixelPickingPass and highlight the picked feature 2019-10-24 20:53:15 +08:00
tslint.json feat(layer): point layer 2019-10-29 17:33:37 +08:00
tslint.prod.json refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
tslint.test.json refactor: refactor with monorep architecture 2019-10-08 20:15:52 +08:00
yarn.lock feat(layer): point layer 2019-10-29 17:33:37 +08:00

README.md

L7-POC

A POC for L7's new architecture.

Getting Started

使用 Yarn Workspace 完成依赖安装以及各包之间的 link 工作:

yarn install

开发模式:

yarn watch

运行 Demo

yarn storybook

代替 git commit 提交:

yarn commit

Add Package

创建一个新的 package

lerna create my-pack -y

将 ui-lib 作为 my-pack 的依赖:

yarn workspace my-pack add ui-lib/1.0.0

将 lodash 添加为所有 package 的依赖(不包含root

yarn workspaces run add lodash

将 typescript 设置为 root 的开发依赖

yarn add -W -D typescript jest