| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| **/node_modules/** | ||
| /built/local/** | ||
| /built/** | ||
| /tests/** | ||
| /lib/** | ||
| /src/lib/*.generated.d.ts | ||
| Expand Down | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Generated module conversion step - inlineImports | ||
| 07758c08ab72481885e662c98d67a0e3a071b032 | ||
| # Generated module conversion step - stripNamespaces | ||
| b6c053882696af8ddd94a600429f30584d303d7f | ||
| # Generated module conversion step - explicitify | ||
| 9a0b85ce2a3f85f498ab2c05474b4c0b96b111c9 | ||
| # Generated module conversion step - unindent | ||
| 94724a8c2e68a4c7e267072ca79971f317c45e4a |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| const cp = require("child_process"); | ||
| const path = require("path"); | ||
| const chalk = require("chalk"); | ||
|
|
||
| const argv = process.argv.slice(2); | ||
|
|
||
| // --tasks-simple is used by VS Code to infer a task list; try and keep that working. | ||
| if (!argv.includes("--tasks-simple")) { | ||
| console.error(chalk.yellowBright("Warning: using gulp shim; please consider running hereby directly.")); | ||
| } | ||
|
|
||
| const args = [ | ||
| ...process.execArgv, | ||
| path.join(__dirname, "node_modules", "hereby", "bin", "hereby.js"), | ||
| ...argv, | ||
| ]; | ||
|
|
||
| const { status } = cp.spawnSync(process.execPath, args, { stdio: "inherit" }); | ||
| process.exit(status ?? 1); |
| Back | FazBrowse Home | New Git URL |
Uh oh!
There was an error while loading. Please reload this page.