I don't know how to describe my problem. I hope you can patiently check the code below.
start.sh
package.json
parcel/
โโโ sample
โโโ deps
โย ย โโโ function.scss
โโโ index.html
โโโ src
โโโ app.js
โโโ components
โโโ a.sh
โโโ a.vue
โโโ b.vue
โโโ c.vue
โโโ d.vue
โโโ e.vue
โโโ f.vue
โโโ g.vue
โโโ h.vue
โโโ i.vue
โโโ j.vue
โโโ k.vue
<script src="./src/app.js"></script>
const a = () => import("./components/a.vue");
const b = () => import("./components/b.vue");
const c = () => import("./components/c.vue");
const d = () => import("./components/d.vue");
const e = () => import("./components/e.vue");
const f = () => import("./components/f.vue");
const g = () => import("./components/g.vue");
const h = () => import("./components/h.vue");
const i = () => import("./components/i.vue");
const j = () => import("./components/j.vue");
const k = () => import("./components/k.vue");
<template><div>test</div></template><style lang="scss" scoped>@import "../../deps/function.scss";.a{width:vw(10);}</style>
@function vw($px) {
@return ($px / 750) * 100vw;
}
#!/bin/bash
rm -rf .cache ./dist
npx parcel ./parcel/sample/index.html --log-level 4

change the app.js !! normal work
const a = () => import("./components/a.vue");
const b = () => import("./components/b.vue");
const c = () => import("./components/c.vue");

| Software | Version(s) |
| ---------------- | ---------- |
|@vue/component-compiler-utils| 2.2.0
|node-sass| 4.9.4
|parcel-bundler| 1.10.3
|vue| 2.5.17
|vue-hot-reload-api| 2.3.0
|vue-router| 3.0.1
|vue-template-compiler| 2.5.17
|vuex| 3.0.1
| Node | 8.12.0
| npm/Yarn | npm/6.4.1
| Operating System | mac 10.13.6 or window10 64bit
When I was debug, I found there was no callback here. So parcel has been waiting for the end.
What makes me very unbelievable is why stop here
Is there a concurrency issue with the nodejs fs module?
I have the same problem in the nodejs v10
use dtruss

await ???
I have the same problem in the nodejs v10
@DeMoorJasper Hello, when will you fix it?
@JJChu I probably won't take on this issue anytime soon.
I'm currently pretty busy with other things and within the parcel project my main focus is currently helping out with Parcel 2 as that's a bit too complex for new contributors.
If anyone wants to take on this issue feel free to do so.
When I accidentally tried dart-sass, the problem was fine.
The question of node-sass, I suspect is the conflict between await and NAPI.