johannes
johannes
Ok I just did some testing: This occurred because I was using Twig::render instead of View::make in the controller's action, which rendered the view just fine, but didn't include the...
Microsoft Edge: `Version 97.0.1072.69 (Official build) (64-bit)` OS: `Windows 10 Enterprise 21H2; build 19044.1466 ` It becomes *corrupted* as soon as I open the PnPjs Console
It resets the extension to the original state, but opening the PnPjs Console causes it to become *corrupted* again :(
@hosein2398 Sorry yes you are right, I tried a minimal repro, and there it worked. There must be something wrong with the monorepo setup I got at work. I'll try...
@hosein2398 I'm pretty sure it's because of the yarn-monorepo setup I have. It doesn't seem to resolve the symlinks correctly. See the path: `..\..\..\..\node_modules\vue-infinite-loading\dist\vue-infinite-loading.js`.
Please check out this repo: https://github.com/johannes-z/bili-yarn-monorepo You need yarn, just run `yarn` in the root and `npx bili` in the flexgrid package folder. It should fail with the above error...
~I added this to `bili.config.ts`, which seems to resolve this issue. I'm not sure if this is *correct* however.~ ```ts extendRollupConfig: config => { config.inputConfig.preserveSymlinks = true return config },...
Adding `exclude` to the babel plugin seems to work, but this obviously seems like a dirty hack. ```ts babel: { exclude: /node_modules\/(?:vue-infinite-loading)/gi, }, ``` Also, is this setting merged with...
`extendRollupConfig` gets called for each `input` entry (if it's any array). I created an array with all the required information (path to the index file, amd-id, output filename), and use...
In `@vue/composition-api` the template refs work differently, so I had to explicetly add the ref attribute to the container, and return the ref from the setup like so: ```html ......