Skip to content

Commit

Permalink
[skip ci] up test
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy committed Feb 28, 2024
1 parent 5cd5a0d commit 31b5d7b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion test.cjs
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
console.log(require.resolve('THREE/examples/jsm/renderers/webgpu/WebGPURenderer.js'))
const fs = require('fs')

const packageJson = JSON.parse(fs.readFileSync('./node_modules/THREE/package.json', 'utf8'))
console.log(packageJson.version)
const filesRoot = fs.readdirSync('./node_modules/THREE')
console.log(filesRoot)
const files2 = fs.readdirSync('./node_modules/THREE/examples/jsm/')
console.log(files2)
const files = fs.readdirSync('./node_modules/THREE/examples/jsm/renderers/webgpu')
console.log(files)
throw new Error('stop')

0 comments on commit 31b5d7b

Please sign in to comment.