summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGravatar Jonathan Neal <jonathantneal@hotmail.com> 2021-12-13 15:59:08 -0500
committerGravatar GitHub <noreply@github.com> 2021-12-13 15:59:08 -0500
commitc3db1eb4ef80b45d52256bc57f5351579af41332 (patch)
tree228c710f2a9cc291d3b92d1978324a454feba95e /scripts
parent5258316c4f169abb1b2714d9db81631414528e31 (diff)
downloadastro-c3db1eb4ef80b45d52256bc57f5351579af41332.tar.gz
astro-c3db1eb4ef80b45d52256bc57f5351579af41332.tar.zst
astro-c3db1eb4ef80b45d52256bc57f5351579af41332.zip
Upgrade dependencies (#2085)
* yarn upgrade * yarn upgrade --latest yargs-parser * yarn upgrade --latest mime * yarn upgrade --latest execa * yarn upgrade --latest globby * yarn upgrade --latest @docsearch/react * yarn upgrade --latest es-module-lexer * yarn upgrade --latest fast-xml-parser * yarn upgrade --latest @astrojs/compiler @astrojs/language-server * yarn upgrade --latest acorn * clean yarn.lock * chore: put `@docsearch/react` back to v1 * chore: remove unused @snowpack/plugin-dotenv * Update yarn.lock * Patch tests based on newer versions of tooling * remove lerna * Update yarn.lock * Update yarn.lock * Pin @sveltejs/vite-plugin-svelte * update yarn.lock
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmd/copy.js2
-rw-r--r--scripts/package.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cmd/copy.js b/scripts/cmd/copy.js
index da4ffd8dd..f31fb3739 100644
--- a/scripts/cmd/copy.js
+++ b/scripts/cmd/copy.js
@@ -1,7 +1,7 @@
import { promises as fs, readFileSync } from 'fs';
import { posix } from 'path';
import arg from 'arg';
-import glob from 'globby';
+import { globby as glob } from 'globby';
import tar from 'tar';
const { resolve, dirname, sep, join } = posix;
diff --git a/scripts/package.json b/scripts/package.json
index 58778c228..9fc64653a 100644
--- a/scripts/package.json
+++ b/scripts/package.json
@@ -10,7 +10,7 @@
"dependencies": {
"arg": "^5.0.0",
"esbuild": "0.13.7",
- "globby": "^11.0.3",
+ "globby": "^12.0.2",
"tar": "^6.1.0"
}
}