5htp 0.0.9-1 → 0.0.9-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 +1 -1
- package/src/compiler/index.ts +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "5htp",
|
|
3
3
|
"description": "5-HTP, scientifically called 5-Hydroxytryptophan, is the precursor of happiness neurotransmitter.",
|
|
4
|
-
"version": "0.0.9-
|
|
4
|
+
"version": "0.0.9-2",
|
|
5
5
|
"author": "Gaetan Le Gac (https://github.com/gaetanlegac)",
|
|
6
6
|
"repository": "git://github.com/gaetanlegac/5htp-cli.git",
|
|
7
7
|
"license": "MIT",
|
package/src/compiler/index.ts
CHANGED
|
@@ -101,6 +101,7 @@ export default async function createCompilers(
|
|
|
101
101
|
const time = timeEnd.getTime() - timeStart.getTime();
|
|
102
102
|
if (stats.hasErrors()) {
|
|
103
103
|
console.error(`############## Failed to compile '${name}' after ${time} ms`);
|
|
104
|
+
process.exit(0);
|
|
104
105
|
} else {
|
|
105
106
|
console.info(`############## [${name}] Finished compilation after ${time} ms`);
|
|
106
107
|
}
|