Skip to content
This repository has been archived by the owner on Oct 26, 2024. It is now read-only.

Commit

Permalink
Fixing GitHub TS Detection - Part 1/3
Browse files Browse the repository at this point in the history
  • Loading branch information
burgil committed Oct 16, 2024
1 parent 81c392d commit 2927678
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
#!/usr/bin/env node
// @ts-ignore
import fs from 'node:fs'; // @ts-ignore
import path from 'node:path'; // @ts-ignore
import process from 'node:process';
const argv: string[] = process.argv.slice(2); // Parse command line arguments

/*
* MIT
* Enjoy
* Made by Burgil
* Dependencies: TypeScript
* Enjoy
* TODO: Add Deno Support
*
* Publishing:
* bunx jsr publish
* or
* npx jsr publish
* or
* deno publish
*/

// @ts-ignore
import fs from 'node:fs';
// @ts-ignore
import path from 'node:path';
// @ts-ignore
import process from 'node:process';

// Variables:
let CleanProject = true;
Expand Down

0 comments on commit 2927678

Please sign in to comment.