File tree Expand file tree Collapse file tree
ui-extensions-dev-console Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242 "@changesets/cli" : " 2.29.7" ,
4343 "@graphql-codegen/add" : " 6.0.0" ,
4444 "@graphql-codegen/cli" : " 6.0.1" ,
45- "@graphql-codegen/near-operation-file-preset" : " 3.1 .0" ,
45+ "@graphql-codegen/near-operation-file-preset" : " 4.0 .0" ,
4646 "@graphql-codegen/typed-document-node" : " 6.1.0" ,
4747 "@graphql-codegen/typescript-operations" : " 5.0.2" ,
4848 "@nx/eslint-plugin" : " 22.0.2" ,
201201 " **/graphql/**/generated/*.ts"
202202 ],
203203 "ignoreDependencies" : [
204- " @shopify/plugin-cloudflare" ,
205- " @shopify/function-runner"
204+ " @shopify/plugin-cloudflare"
206205 ],
207206 "vite" : {
208207 "config" : [
Original file line number Diff line number Diff line change 5151 "@luckycatfactory/esbuild-graphql-loader" : " 3.8.1" ,
5252 "@oclif/core" : " 4.5.3" ,
5353 "@shopify/cli-kit" : " 3.92.0" ,
54- "@shopify/function-runner" : " 4.1.1" ,
5554 "@shopify/plugin-cloudflare" : " 3.92.0" ,
5655 "@shopify/polaris" : " 12.27.0" ,
5756 "@shopify/polaris-icons" : " 8.11.1" ,
Original file line number Diff line number Diff line change 127127 "commondir" : " 1.0.1" ,
128128 "conf" : " 11.0.2" ,
129129 "deepmerge" : " 4.3.1" ,
130- "del" : " 6.1.1" ,
131130 "dotenv" : " 16.4.7" ,
132131 "env-paths" : " 3.0.0" ,
133132 "execa" : " 7.2.0" ,
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ import {
4848 access as fsAccess ,
4949 rename as fsRename ,
5050 unlink as fsUnlink ,
51+ rm as fsRm ,
5152 readdir as fsReaddir ,
5253 symlink as fsSymlink ,
5354} from 'fs/promises'
@@ -312,9 +313,8 @@ interface RmDirOptions {
312313 * @param options - Options to remove the directory with.
313314 */
314315export async function rmdir ( path : string , options : RmDirOptions = { } ) : Promise < void > {
315- const { default : del } = await import ( 'del' )
316316 outputDebug ( outputContent `Removing directory at ${ outputToken . path ( path ) } ...` )
317- await del ( path , { force : options . force } )
317+ await fsRm ( path , { recursive : true , force : options . force ?? true } )
318318}
319319
320320/**
Original file line number Diff line number Diff line change 3232 "@cucumber/pretty-formatter" : " 2.4.1" ,
3333 "@types/fs-extra" : " ^9.0.13" ,
3434 "fs-extra" : " ^9.1.0" ,
35- "tempy" : " ^1.0.1 "
35+ "tempy" : " ^3. 1.0"
3636 },
3737 "engines" : {
3838 "node" : " >=20.10.0"
Original file line number Diff line number Diff line change 11import { writeFile } from '../lib/fs.js'
22import { Given , After , setDefaultTimeout } from '@cucumber/cucumber'
3- import tempy from 'tempy'
3+ import { temporaryDirectory } from 'tempy'
44import { rimrafSync } from 'rimraf'
55import * as path from 'pathe'
66
@@ -12,7 +12,7 @@ if (process.env.DEBUG === '1') {
1212}
1313
1414Given ( 'I have a working directory' , async function ( ) {
15- this . temporaryDirectory = tempy . directory ( )
15+ this . temporaryDirectory = temporaryDirectory ( )
1616 const dataHomeDirectory = path . join ( this . temporaryDirectory , 'XDG_DATA_HOME' )
1717 const configHomeDirectory = path . join ( this . temporaryDirectory , 'XDG_CONFIG_HOME' )
1818 const stateHomeDirectory = path . join ( this . temporaryDirectory , 'XDG_STATE_HOME' )
Original file line number Diff line number Diff line change 2929 "@types/react" : " ^18.2.0" ,
3030 "@types/react-dom" : " ^18.2.0" ,
3131 "@vitejs/plugin-react" : " ^5.1.4" ,
32- "jsdom" : " ^20 .0.3 " ,
32+ "jsdom" : " ^25 .0.0 " ,
3333 "sass" : " ^1.83.1" ,
3434 "vite" : " 6.4.1"
3535 }
Original file line number Diff line number Diff line change 5656 "@shopify/ui-extensions-test-utils" : " 3.26.0" ,
5757 "@types/react" : " ^18.2.0" ,
5858 "@vitejs/plugin-react" : " ^5.1.4" ,
59- "jsdom" : " ^20 .0.3 " ,
59+ "jsdom" : " ^25 .0.0 " ,
6060 "react" : " ^18.2.0" ,
6161 "react-dom" : " ^18.2.0" ,
6262 "vite" : " 6.4.1"
You can’t perform that action at this time.
0 commit comments