Skip to content

Instantly share code, notes, and snippets.

View spookyuser's full-sized avatar
🌎
reading and writing

spookyuser

🌎
reading and writing
View GitHub Profile
diff --git a/package.json b/package.json
index 18c05781ac63bb3a47e799309756e65ea88f8332..fd1fe26cc803844c4d6684e393a1099b7a04a5f0 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
"engines": {
"node": ">=14.8.0"
},
- "types": "/types/mod.d.ts",
+ "types": "../types/mod.d.ts",
@spookyuser
spookyuser / 2010.html
Created December 31, 2023 13:11
I asked chatgpt to make me a website with a 2010 aesthetic and showed it a picture of the stripe website in 2010
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2010 Style Web Page</title>
<style>
body {
font-family: Arial, sans-serif;
@spookyuser
spookyuser / Dockerfile
Created October 3, 2022 10:06
Baking sentence transformers into docker
FROM python:3.10.7-slim as base
ENV PYTHONFAULTHANDLER=1 \
PYTHONUNBUFFERED=1 \
PYTHONHASHSEED=random \
PIP_NO_CACHE_DIR=off \
PIP_DISABLE_PIP_VERSION_CHECK=on \
PIP_DEFAULT_TIMEOUT=100 \
PIPENV_NOSPIN=true \
NUMBA_CACHE_DIR=/tmp \
diff --git a/lib/config.js b/lib/config.js
index 14628a23a32369116a76a512a95cc584315122f9..bca2e1dab978960e2f735306a9b69fffd7215652 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -8,7 +8,7 @@ const resolve_1 = require("./resolve");
const just_task_logger_1 = require("just-task-logger");
const enableTypeScript_1 = require("./enableTypeScript");
function resolveConfigFile(args) {
- for (const entry of [args.config, './just.config.js', './just-task.js', './just.config.ts', args.defaultConfig]) {
+ for (const entry of [args.config, './just.config.js', './just.config.cjs', './just-task.js', './just.config.ts', 'just.config.cts',args.defaultConfig]) {