Season Chen
Season Chen
When `multiple components` want to use `same store`, or a component that with a store will `render multiple times`, the `reusable` of `store` is important. Now, i can't find a...
看到有个shutup配置,不过有点疑惑,fis3-hook-node_modules会把收集到的文件加入依赖列表么(如果只是不提示还加入依赖列表的话,会有问题)? 讲文件加入依赖列表具体是在哪个阶段做的,fis3-hook-commonjs还是?
@jincdream 理论上说这种需求不存在啊,你页面中的js版本号变了,你页面版本号不变的话,取的还是原来的js,根本不会跟新现在的js啊……所以js版本变了,页面版本也应该变是对的不是么~~
And, i want the popper has min 100% width of the trigger.
https://github.com/react-component/align/pull/126/files This is my local solution.
直接这样的话 ``` require('page/index')(); ``` 由于requireJs不允许在全局调用require,所以会报错,如果改成 require(['page/index'])这样的话,资源只能异步加载。。
@2betop 确认: ``` // https://github.com/fex-team/fis3-hook-module fis.hook('module', { wrap: 'amd', mode: 'amd', baseUrl: './static/', paths: {}, packages: [], forwardDeclaration: true, skipBuiltinModules: false, globalAsyncAsSync: true, extList: ['.js', '.coffee', '.jsx'] }); ```