summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Nate Moore <natemoo-re@users.noreply.github.com> 2022-03-18 17:44:59 -0500
committerGravatar GitHub <noreply@github.com> 2022-03-18 17:44:59 -0500
commit910cae3b9513792dc8ba51467ecf550f113bf2da (patch)
tree24b196db524af0a17dc08381881dbc8a173e8ceb
parent6386c14d00d1d820804f0ee5b1424e73c049fe83 (diff)
downloadastro-910cae3b9513792dc8ba51467ecf550f113bf2da.tar.gz
astro-910cae3b9513792dc8ba51467ecf550f113bf2da.tar.zst
astro-910cae3b9513792dc8ba51467ecf550f113bf2da.zip
fix(windows): fix build script on windows (#2830)
-rw-r--r--packages/webapi/run/build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/webapi/run/build.js b/packages/webapi/run/build.js
index 214dbe0ba..3bde958f0 100644
--- a/packages/webapi/run/build.js
+++ b/packages/webapi/run/build.js
@@ -1,6 +1,6 @@
import { rollup } from 'rollup'
import { nodeResolve } from '@rollup/plugin-node-resolve'
-import { posix as path } from 'node:path'
+import path from 'node:path'
import { createRequire } from 'node:module'
import {
readFile as nodeReadFile,