Skip to content

Commit

Permalink
Create scripts folder
Browse files Browse the repository at this point in the history
Signed-off-by: m4rc3l05 <15786310+M4RC3L05@users.noreply.github.com>
  • Loading branch information
M4RC3L05 committed Jul 12, 2024
1 parent 44617ce commit 2235499
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
"version": "4.1.0",
"exports": "./src/main.ts",
"tasks": {
"run": "./.bin/public-to-json.ts && deno run -A --unstable-ffi --cached-only src/main.ts",
"compile": "./.bin/public-to-json.ts && deno compile -A --unstable-ffi --include ./src/public.json --cached-only --lock=deno.lock -o ./.bin/denotag ./src/main.ts",
"deps:check": "deno cache --frozen src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts",
"deps:lock": "deno cache --frozen=false src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts",
"deps": "deno cache --reload src/*.ts src/**/*.ts src/**/*.tsx ./.bin/*.ts"
"run": "./scripts/public-to-json.ts && deno run -A --unstable-ffi --cached-only src/main.ts",
"compile": "./scripts/public-to-json.ts && deno compile -A --unstable-ffi --include ./src/public.json --cached-only -o ./.bin/denotag ./src/main.ts",
"deps:check": "deno cache --frozen src/*.ts src/**/*.ts src/**/*.tsx ./scripts/*.ts",
"deps:lock": "deno cache --frozen=false src/*.ts src/**/*.ts src/**/*.tsx ./scripts/*.ts",
"deps": "deno cache --reload src/*.ts src/**/*.ts src/**/*.tsx ./scripts/*.ts"
},
"compilerOptions": {
"lib": ["DOM", "deno.ns"],
Expand Down
2 changes: 1 addition & 1 deletion .bin/public-to-json.ts → scripts/public-to-json.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run -A --unstable-ffi --cached-only --lock=deno.lock
#!/usr/bin/env -S deno run -A --unstable-ffi --cached-only

import { build, type Plugin, stop } from "esbuild";
import { denoPlugins } from "@luca/esbuild-deno-loader";
Expand Down

0 comments on commit 2235499

Please sign in to comment.