bimba-cli 0.7.6 → 0.7.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/serve.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bimba-cli",
3
- "version": "0.7.6",
3
+ "version": "0.7.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/HeapVoid/bimba.git"
package/serve.js CHANGED
@@ -369,7 +369,7 @@ async function compileFile(filepath) {
369
369
 
370
370
  const errors = result.errors || []
371
371
  if (!errors.length && result.js) {
372
- const { js, slotCount } = stabilizeSymbols(result.js, filepath)
372
+ const { js, slotCount } = stabilizeSymbols(result.js, abs)
373
373
  result.js = js
374
374
  const prev = _prevSlots.get(abs)
375
375
  result.slots = (prev === undefined || prev === slotCount) ? 'stable' : 'shifted'