@lls/vitescripts 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/vitescripts",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "lls vite plugins",
5
5
  "main": "src/index.mjs",
6
6
  "files": [
@@ -9,6 +9,8 @@ const llsLinariaSsrCollectPlugin = () => {
9
9
  let linariaPlugin
10
10
  return {
11
11
  name: 'lls:llsLinariaSsrCollect',
12
+ /* we enforce pre because if vite-plugin-linaria resolves id, vite4 won't call us. Since we do not resolve, we can be put before */
13
+ enforce: 'pre',
12
14
  config(config) {
13
15
  linariaPlugin = config.plugins.find(plugin => plugin.name === 'linaria')
14
16
  },