This commit is contained in:
Pipi Chen
2020-05-07 01:02:44 +08:00
commit b8a3516cd6
2147 changed files with 184854 additions and 0 deletions

6
node_modules/javascript-obfuscator/scripts/build generated vendored Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
yarn run removeCacheDir &&
yarn run webpack:prod &&
yarn run eslint &&
yarn test

3
node_modules/javascript-obfuscator/scripts/eslint generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/eslint src/**/*.ts

View File

@@ -0,0 +1,3 @@
#!/bin/bash
git add .

View File

@@ -0,0 +1,3 @@
#!/bin/bash
rm -rf .awcache

3
node_modules/javascript-obfuscator/scripts/start generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
yarn run watch

View File

@@ -0,0 +1,4 @@
#!/bin/bash
$(yarn bin)/tsc -p test/tsconfig.test.json --outDir test-tmp &&
rsync -a --prune-empty-dirs --include '*/' --include '*.js' --include '*.json' --exclude '*' test/ test-tmp/test/

View File

@@ -0,0 +1,7 @@
#!/bin/bash
yarn run test:removeTmpDir &&
yarn run test:compile &&
$(yarn bin)/nyc $(yarn bin)/mocha -- test-tmp/test/index.spec.js --exit &&
$(yarn bin)/nyc report --reporter=text-lcov | $(yarn bin)/coveralls &&
yarn run test:removeTmpDir

3
node_modules/javascript-obfuscator/scripts/test-dev generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/ts-node --type-check test/dev/dev.ts

View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/ts-node test/dev/dev-compile-performance.ts

View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/ts-node test/dev/dev-runtime-performance.ts

7
node_modules/javascript-obfuscator/scripts/test-full generated vendored Normal file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
yarn run test:removeTmpDir &&
yarn run test:compile &&
node test-tmp/test/dev/dev.js &&
$(yarn bin)/nyc --reporter text-summary $(yarn bin)/mocha -- test-tmp/test/index.spec.js --exit &&
yarn run test:removeTmpDir

View File

@@ -0,0 +1,6 @@
#!/bin/bash
yarn run test:removeTmpDir &&
yarn run test:compile &&
$(yarn bin)/mocha test-tmp/test/index.spec.js &&
yarn run test:removeTmpDir

View File

@@ -0,0 +1,3 @@
#!/bin/bash
rm -rf test-tmp

4
node_modules/javascript-obfuscator/scripts/travis generated vendored Normal file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
yarn run eslint &&
yarn test

3
node_modules/javascript-obfuscator/scripts/watch generated vendored Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/webpack --config webpack/webpack.node.config.js --mode development --watch

View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/webpack --config webpack/webpack.node.config.js --mode production

View File

@@ -0,0 +1,3 @@
#!/bin/bash
$(yarn bin)/webpack --config webpack/webpack.node.config.js --config webpack/webpack.browser.config.js --mode production