Skip to content

Commit 5b92238

Browse files
committed
Rename tmp dir to temp
1 parent 3f39d67 commit 5b92238

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ package-lock.json
3535
dist/
3636
build/
3737
public/
38-
tmp/
38+
temp/
3939
resources/
4040
*.lock
4141
*.log

esbuild.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const banner = `/**
2121
const workers = {
2222
entryPoints: await glob("./src/**/worker.js"),
2323
outExtension: { ".js": ".txt" },
24-
outdir: "./tmp",
24+
outdir: "./temp",
2525
target: "es2019",
2626
logLevel: "info",
2727
format: "iife",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"build:js": "node esbuild",
7171
"build:js:min": "node esbuild -m",
7272
"build:dts": "cpy \"types/*\" build/types && cpy \"types/*\" build/types --rename=index.d.cts",
73-
"clean": "del-cli build tmp manual/resources \"manual/assets/**/dist\" public",
73+
"clean": "del-cli build temp manual/resources \"manual/assets/**/dist\" public",
7474
"copy": "cpy \"demo/static/**/*\" public/demo",
7575
"deploy": "run-s copy postcss hugo gzip",
7676
"doc": "esdoc",

src/textures/lut/LookupTexture.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414

1515
import { LUTOperation } from "../../enums/LUTOperation.js";
1616
import { RawImageData } from "../RawImageData.js";
17-
import workerProgram from "../../../tmp/lut/worker.txt";
17+
import workerProgram from "../../../temp/lut/worker.txt";
1818

1919
const c = /* @__PURE__ */ new Color();
2020

src/textures/smaa/SMAAImageGenerator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { LoadingManager } from "three";
22
import { RawImageData } from "../RawImageData.js";
3-
import workerProgram from "../../../tmp/smaa/worker.txt";
3+
import workerProgram from "../../../temp/smaa/worker.txt";
44

55
/**
66
* Generates the SMAA data images.

0 commit comments

Comments
 (0)