Compare commits

..

3 Commits

Author SHA1 Message Date
Vipul
669e7536d9 Revert "Add example for Haskell Stack" 2022-02-22 12:17:37 +05:30
Vipul
29dbbce762 Merge pull request #173 from malob/add-stack-example
Add example for Haskell Stack
2022-02-22 12:11:06 +05:30
Malo Bourgon
ea5981db97 Add example for Haskell Stack 2022-02-21 14:59:28 -08:00
4 changed files with 4 additions and 4 deletions

View File

@@ -6877,7 +6877,7 @@ function run() {
} }
}); });
} }
run().then(() => process.exit()); run();
exports.default = run; exports.default = run;

2
dist/save/index.js vendored
View File

@@ -6631,7 +6631,7 @@ function run() {
} }
}); });
} }
run().then(() => process.exit()); run();
exports.default = run; exports.default = run;

View File

@@ -60,6 +60,6 @@ async function run(): Promise<void> {
} }
} }
run().then(() => process.exit()); run();
export default run; export default run;

View File

@@ -51,6 +51,6 @@ async function run(): Promise<void> {
} }
} }
run().then(() => process.exit()); run();
export default run; export default run;