front-end-captain
front-end-captain
这里的流水线是基于哪个工具做的
eslint 配置是中心化的还是各个项目都有自己的 eslint 配置
@jonatankBIT Thanks reply. I try execute `bit remote`, but `bit remote` must used inside a workspace
@jonatankBIT I get this error
@jonatankBIT emmmm... An error reported in the first step, so it was impossible to create a workspace
@jonatankBIT Can this problem still be solved?
@jonatankBIT I found a solution. ``` bit remote add -g ``` and then ``` bit new dp-example-workspace bit-workspace-test --aspect dp-design/my-workspace-generator --default-scope dp-design ``` success.
I want to build a CLI installer from source code, such as the 0.0.945 linux platform installer https://bvm.bit.dev/bit/versions/0.0.945/bit-0.0.945-linux-x64.tar.gz
``` typescript type Effect = (() => Promise | void) | Flow; class Flow { private _queue: (() => void)[]; private _endCallback: (() => void) | undefined; constructor(effects: Effect[]) {...