chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:48:55 +08:00
commit c728c8e1e1
1067 changed files with 109127 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
/* eslint-disable no-console */
const exec = require('shelljs').exec
const codecov = '15039ad1-b495-48cd-b4a0-bcf124c9b318' //i don't really care if you steal this.
//let cmd=`./node_modules/.bin/nyc --reporter=text ./node_modules/.bin/tape ./test/**/*.test.js`
//run all the tests
const cmd = `./node_modules/.bin/c8 --reporter=text-lcov ./node_modules/.bin/tape ./tests/**/*.test.js > coverage.lcov && ./node_modules/.bin/codecov -t ${codecov}`
exec(cmd)
console.log('\n 🏃 done!')