edje js not pre compile for node 12 version

Solutions on MaxInterview for edje js not pre compile for node 12 version by the best coders in the world

showing results for - "edje js not pre compile for node 12 version"
Sofie
10 Sep 2016
1Hopefully the error description is clear.
2So here what I did when I got this error :
3Go to https://github.com/tjanczuk/edge
4Download the repository and extract it
5Open a terminal and go to the tools folder
6run build.bat release 8.9.3
7copy the generated files in the edge npm folder
8%AppData%\npm\node_modules\vs-tac\node_modules\edge\lib\native\win32\x64
9in my case :
10concrt140.dll
11msvcp140.dll
12vccorlib140.dll
13the 8.9.3 folder
14edit the %AppData%\npm\node_modules\vs-tac\node_modules\edge\lib\edge.js file
15Add an entry for your version in the versionMap variable.
16var versionMap = [
17[ /^0\.8\./, '0.8.22' ],
18[ /^0\.10\./, '0.10.0' ],
19[ /^0\.12\./, '0.12.0' ],
20[ /^4\./, '4.1.1' ],
21[ /^5\./, '5.1.0' ],
22[ /^6\./, '6.11.3' ],
23[ /^8\./, '8.9.3' ] ];
24Enjoy !