Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 91c0f4c0b2 | |||
|
|
8903b91d44 |
@ -5,8 +5,6 @@
|
|||||||
|
|
||||||
The Riot.js official parcel transformer.
|
The Riot.js official parcel transformer.
|
||||||
|
|
||||||
🚧 Parcel 2 was just released and this package is still under development and not yet 100% ready. Come back soon
|
|
||||||
|
|
||||||
## Important
|
## Important
|
||||||
|
|
||||||
- If you are using Parcel < 2.0.0 please check the [this branch](https://github.com/riot/parcel-transformer-riot/tree/parcel-v1)
|
- If you are using Parcel < 2.0.0 please check the [this branch](https://github.com/riot/parcel-transformer-riot/tree/parcel-v1)
|
||||||
|
|||||||
4
index.js
4
index.js
@ -33,8 +33,8 @@ module.exports = new Transformer({
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
const shouldInvalidateOnStartup = riotConfig &&
|
const shouldInvalidateOnStartup = riotConfig &&
|
||||||
riotConfig.filePath.endsWith('.js') ||
|
riotConfig?.filePath?.endsWith('.js') ||
|
||||||
riotConfig.filePath.endsWith(CONFIG_FILES[0])
|
riotConfig?.filePath?.endsWith(CONFIG_FILES[0])
|
||||||
|
|
||||||
if (shouldInvalidateOnStartup) {
|
if (shouldInvalidateOnStartup) {
|
||||||
config.invalidateOnStartup()
|
config.invalidateOnStartup()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user