├── .git-blame-ignore-revs
├── .github
├── CODEOWNERS
└── workflows
│ ├── ci.yml
│ └── pr.yml
├── .gitignore
├── .kodiak.toml
├── .prettierignore
├── LICENSE
├── jest.config.js
├── package.json
├── prepare-install.js
├── readme.md
├── release.config.js
├── src
├── analyze.ts
├── cli.ts
├── fs.ts
├── index.ts
├── node-file-trace.ts
├── resolve-dependency.ts
├── types.ts
└── utils
│ ├── ast-helpers.ts
│ ├── binary-locators.ts
│ ├── get-package-base.ts
│ ├── interop-require.ts
│ ├── sharedlib-emit.ts
│ ├── special-cases.ts
│ ├── static-eval.ts
│ ├── types.ts
│ └── wrappers.ts
├── test
├── cli.test.js
├── ecmascript.test.js
├── ecmascript
│ ├── README.md
│ ├── data-common.json
│ ├── data-es2016plus.js
│ ├── data-es5.js
│ ├── data-es6.js
│ ├── data-esintl.js
│ └── data-esnext.js
├── fixtures
│ ├── es-module-dep.js
│ ├── es-module.js
│ ├── img.jpg
│ ├── index.html
│ ├── test.js
│ ├── test.ts
│ └── tsconfig.json
├── integration.test.js
├── integration
│ ├── analytics-node.js
│ ├── apollo.js
│ ├── argon2.js
│ ├── auth0.js
│ ├── aws-sdk.js
│ ├── axios.js
│ ├── azure-cosmos.js
│ ├── azure-storage.js
│ ├── bcrypt.js
│ ├── bindings-failure.js
│ ├── browserify-middleware.js
│ ├── bugsnag-js.js
│ ├── bull.js
│ ├── bullmq.js
│ ├── camaro.js
│ ├── chromeless.js
│ ├── core-js.js
│ ├── cowsay.js
│ ├── datadog-pprof.js
│ ├── dogfood.js
│ ├── env-var.js
│ ├── es-get-iterator.js
│ ├── esbuild.js
│ ├── esm.js
│ ├── express-consolidate.js
│ ├── express-template-engine.js
│ ├── express-template.js
│ ├── express.js
│ ├── fast-glob.js
│ ├── fetch-h2.js
│ ├── ffmpeg.js
│ ├── firebase-admin.js
│ ├── firebase.js
│ ├── firestore.js
│ ├── fluent-ffmpeg.js
│ ├── geo-tz.js
│ ├── google-bigquery.js
│ ├── got.js
│ ├── highlights.js
│ ├── hot-shots.js
│ ├── ioredis.js
│ ├── isomorphic-unfetch.js
│ ├── jimp.js
│ ├── jugglingdb.js
│ ├── koa.js
│ ├── leveldown.js
│ ├── lighthouse.js
│ ├── loopback.js
│ ├── mailgun.js
│ ├── mariadb.js
│ ├── memcached.js
│ ├── mongoose.js
│ ├── mysql.js
│ ├── oracledb.js
│ ├── paraphrase.js
│ ├── passport-trakt.js
│ ├── passport.js
│ ├── path-platform.js
│ ├── pdf2json.js
│ ├── pdfkit.js
│ ├── pg.js
│ ├── pixelmatch.js
│ ├── playwright-core.js
│ ├── polyfill-library.js
│ ├── pug.js
│ ├── react.js
│ ├── redis.js
│ ├── remark-prism.mjs
│ ├── request.js
│ ├── rxjs.js
│ ├── saslprep.js
│ ├── semver.js
│ ├── sentry.js
│ ├── sequelize.js
│ ├── serialport.js
│ ├── sharp-pnpm.js
│ ├── sharp.js
│ ├── shiki.js
│ ├── socket.io.js
│ ├── sparql-builder.js
│ ├── stripe.js
│ ├── tiny-json-http.js
│ ├── twilio.js
│ ├── typescript.js
│ ├── uglify.js
│ ├── vm2.js
│ ├── vue.js
│ ├── when.js
│ └── zeromq.js
├── unit.test.js
└── unit
│ ├── amd-disable
│ ├── input.js
│ └── output.js
│ ├── array-emission
│ ├── input.js
│ ├── output.js
│ └── renderer
│ │ ├── dom.js
│ │ └── util.js
│ ├── array-holes
│ ├── input.js
│ └── output.js
│ ├── asset-conditional
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-array-expr-node-prefix
│ ├── asset1.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-array-expr
│ ├── asset1.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-extra
│ ├── asset1.txt
│ ├── asset2.json
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-babel
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es-2
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es-3
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es-4
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es-5
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es-node-prefix
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-enc-es
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-shadow
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-ts-no-interop
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-path-ts
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inline-tpl
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-inlining-multi
│ ├── asset.txt
│ ├── input.js
│ ├── output.js
│ └── sub
│ │ └── asset.txt
│ ├── asset-fs-inlining
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── asset-fs-logical
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── asset-graceful-fs
│ ├── asset.txt
│ ├── input.js
│ ├── output.js
│ └── sub
│ │ └── asset.txt
│ ├── asset-node-require
│ ├── input.js
│ ├── mock.node
│ └── output.js
│ ├── asset-package-json
│ ├── input.js
│ ├── output.js
│ └── package.json
│ ├── asset-symlink
│ ├── asset.txt
│ ├── asset1.txt
│ ├── input.js
│ └── output.js
│ ├── basic-analysis-require
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── browserify-minify
│ ├── input.js
│ └── output.js
│ ├── browserify-uglify
│ ├── dep1.js
│ ├── dep2.js
│ ├── input.js
│ └── output.js
│ ├── browserify
│ ├── dep1.js
│ ├── dep2.js
│ ├── input.js
│ └── output.js
│ ├── class-static
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── datadog-pprof-node-gyp
│ ├── input.js
│ └── output.js
│ ├── dirname-emit-concat
│ ├── assets
│ │ └── file.txt
│ ├── input.js
│ └── output.js
│ ├── dirname-emit
│ ├── asset.txt
│ ├── input.js
│ ├── output.js
│ └── subdir
│ │ └── file.txt
│ ├── dirname-len
│ ├── input.js
│ └── output.js
│ ├── dot-dot
│ ├── dir
│ │ └── dot-dot-req.js
│ ├── index.js
│ ├── input.js
│ └── output.js
│ ├── esm-dynamic-import
│ ├── dep.js
│ ├── input.js
│ ├── output.js
│ └── package.json
│ ├── esm-export-wildcard
│ ├── all.js
│ ├── input.js
│ ├── output.js
│ └── week.js
│ ├── esm-paths-trailer
│ ├── esm-dep.js
│ ├── input.js
│ └── output.js
│ ├── esm-paths
│ ├── esm-dep.js
│ ├── input.js
│ └── output.js
│ ├── esm
│ ├── esm-dep.js
│ ├── input.js
│ └── output.js
│ ├── exports-fallback
│ ├── input.js
│ ├── node_modules
│ │ └── pkg
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ ├── require-main.cjs
│ │ │ └── subdir
│ │ │ ├── import-main.js
│ │ │ └── package.json
│ └── output.js
│ ├── exports-nomodule
│ ├── input.js
│ ├── no.js
│ ├── node.js
│ ├── output.js
│ └── package.json
│ ├── exports-only
│ ├── input.js
│ ├── node_modules
│ │ └── pkg
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ ├── require-main.cjs
│ │ │ └── subdir
│ │ │ ├── import-main.js
│ │ │ └── package.json
│ └── output.js
│ ├── exports-path
│ ├── input.js
│ ├── node_modules
│ │ ├── apollo-upload-client
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ └── public
│ │ │ │ └── ReactNativeFile.js
│ │ └── extract-files
│ │ │ ├── package.json
│ │ │ └── public
│ │ │ └── ReactNativeFile.js
│ └── output.js
│ ├── exports-wildcard
│ ├── input.js
│ ├── no.js
│ ├── node.js
│ ├── output.js
│ └── package.json
│ ├── exports
│ ├── input.js
│ ├── node_modules
│ │ └── pkg
│ │ │ ├── index.js
│ │ │ ├── package.json
│ │ │ ├── require-main.cjs
│ │ │ └── subdir
│ │ │ ├── import-main.js
│ │ │ └── package.json
│ └── output.js
│ ├── ffmpeg-installer
│ ├── ffmpeg.exe
│ ├── ffmpeg.js
│ ├── input.js
│ └── output.js
│ ├── file-folder-slash
│ ├── file-folder.js
│ ├── file-folder
│ │ └── index.js
│ ├── input.js
│ └── output.js
│ ├── filter-asset-base
│ ├── input.js
│ └── output.js
│ ├── fs-emission
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── asset3.txt
│ ├── input.js
│ └── output.js
│ ├── glob-dot
│ ├── input.js
│ ├── output.js
│ ├── with-dot
│ │ └── .dot
│ │ │ └── first.txt
│ └── without-dot
│ │ └── normal
│ │ └── first.txt
│ ├── import-assertions
│ ├── foo.js
│ ├── info.json
│ ├── input.js
│ └── output.js
│ ├── import-attributes
│ ├── foo.js
│ ├── info.json
│ ├── input.js
│ └── output.js
│ ├── import-meta-bad-url
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── import-meta-tpl-cnd
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── import-meta-url
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── imports
│ ├── input.js
│ ├── no.js
│ ├── node.js
│ ├── output.js
│ └── package.json
│ ├── jsonc-parser-wrapper
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── jsx-input
│ ├── dep.jsx
│ ├── input.jsx
│ └── output.js
│ ├── microtime-node-gyp
│ ├── input.js
│ └── output.js
│ ├── mixed-esm-cjs
│ ├── commonjs-module.js
│ ├── ecmascript-module.js
│ ├── input.js
│ └── output.js
│ ├── module-require
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── mongoose
│ ├── dir
│ │ └── connection.js
│ ├── input.js
│ └── output.js
│ ├── multi-input
│ ├── asset-2.txt
│ ├── asset.txt
│ ├── child-1.js
│ ├── child-2.js
│ ├── child-3.js
│ ├── child-4.js
│ ├── input-2.js
│ ├── input-3.js
│ ├── input-4.js
│ ├── input.js
│ ├── output.js
│ └── style.module.css
│ ├── node-modules-filter
│ ├── input.js
│ ├── output.js
│ └── sub
│ │ └── node_modules
│ │ └── pkg
│ │ └── noemit
│ ├── non-analyzable-requires
│ ├── dep.js
│ ├── ignored.js
│ ├── input.js
│ └── output.js
│ ├── null-destructure
│ ├── input.js
│ └── output.js
│ ├── path-sep
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── phantomjs-prebuilt
│ ├── input.js
│ └── output.js
│ ├── pixelmatch
│ ├── input.js
│ └── output.js
│ ├── pkginfo
│ ├── input.js
│ ├── output.js
│ └── package.json
│ ├── pnpm-symlinks
│ ├── input.js
│ ├── node_modules
│ │ ├── .modules.yaml
│ │ ├── .pnpm
│ │ │ ├── lock.yaml
│ │ │ ├── node_modules
│ │ │ │ └── parse5
│ │ │ ├── parse5-htmlparser2-tree-adapter@6.0.1
│ │ │ │ └── node_modules
│ │ │ │ │ ├── parse5
│ │ │ │ │ └── parse5-htmlparser2-tree-adapter
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── lib
│ │ │ │ │ └── index.js
│ │ │ │ │ └── package.json
│ │ │ └── parse5@6.0.1
│ │ │ │ └── node_modules
│ │ │ │ └── parse5
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README.md
│ │ │ │ ├── lib
│ │ │ │ ├── common
│ │ │ │ │ ├── doctype.js
│ │ │ │ │ ├── error-codes.js
│ │ │ │ │ ├── foreign-content.js
│ │ │ │ │ ├── html.js
│ │ │ │ │ └── unicode.js
│ │ │ │ ├── extensions
│ │ │ │ │ ├── error-reporting
│ │ │ │ │ │ ├── mixin-base.js
│ │ │ │ │ │ ├── parser-mixin.js
│ │ │ │ │ │ ├── preprocessor-mixin.js
│ │ │ │ │ │ └── tokenizer-mixin.js
│ │ │ │ │ ├── location-info
│ │ │ │ │ │ ├── open-element-stack-mixin.js
│ │ │ │ │ │ ├── parser-mixin.js
│ │ │ │ │ │ └── tokenizer-mixin.js
│ │ │ │ │ └── position-tracking
│ │ │ │ │ │ └── preprocessor-mixin.js
│ │ │ │ ├── index.js
│ │ │ │ ├── parser
│ │ │ │ │ ├── formatting-element-list.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── open-element-stack.js
│ │ │ │ ├── serializer
│ │ │ │ │ └── index.js
│ │ │ │ ├── tokenizer
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── named-entity-data.js
│ │ │ │ │ └── preprocessor.js
│ │ │ │ ├── tree-adapters
│ │ │ │ │ └── default.js
│ │ │ │ └── utils
│ │ │ │ │ ├── merge-options.js
│ │ │ │ │ └── mixin.js
│ │ │ │ └── package.json
│ │ └── parse5-htmlparser2-tree-adapter
│ ├── output.js
│ ├── package.json
│ └── pnpm-lock.yaml
│ ├── prisma-photon
│ ├── input.js
│ ├── node_modules
│ │ └── @generated
│ │ │ └── photon
│ │ │ ├── index.js
│ │ │ └── runtime
│ │ │ └── query-engine-darwin
│ └── output.js
│ ├── process-cwd
│ ├── _posts
│ │ ├── first.md
│ │ └── second.md
│ ├── input.js
│ └── output.js
│ ├── process-env
│ ├── a.js
│ ├── b.js
│ ├── input.js
│ └── output.js
│ ├── processed-dependency
│ ├── child-2.js
│ ├── child.js
│ ├── input-cached.js
│ ├── input.js
│ ├── output-cached.js
│ ├── output.js
│ ├── parent-1.js
│ └── parent-2.js
│ ├── protobuf-loop
│ ├── assets
│ │ ├── asset1.txt
│ │ └── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── protobuf-loop2
│ ├── assets
│ │ ├── asset1.txt
│ │ └── asset2.txt
│ ├── input.js
│ └── output.js
│ ├── require-call
│ ├── input.js
│ └── output.js
│ ├── require-dirname-tpl
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── require-dot
│ ├── index.js
│ ├── input.js
│ └── output.js
│ ├── require-dynamic-fallback
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── require-empty
│ ├── input.js
│ └── output.js
│ ├── require-resolve
│ ├── asset1.txt
│ ├── asset2.txt
│ ├── asset3.txt
│ ├── dep1.js
│ ├── dep2.js
│ ├── input.js
│ └── output.js
│ ├── require-symlink
│ ├── another.js
│ ├── input.js
│ ├── output.js
│ └── symlink
│ ├── require-var-branch
│ ├── input.js
│ ├── lib1
│ │ └── createsend.js
│ ├── lib2
│ │ └── createsend.js
│ └── output.js
│ ├── require-wrapper
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── require-wrapper2
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── require-wrapper3
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── resolve-from
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── resolve-hook
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── return-emission
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── shiki
│ ├── input.js
│ └── output.js
│ ├── string-concat
│ ├── input.js
│ ├── lib
│ │ └── dep.js
│ └── output.js
│ ├── syntax-err
│ ├── input.js
│ └── output.js
│ ├── top-level-await
│ ├── input.js
│ ├── module.js
│ └── output.js
│ ├── ts-filter
│ ├── input.js
│ ├── node_modules
│ │ └── pkg
│ │ │ ├── dep.js
│ │ │ ├── index.js
│ │ │ └── index.ts
│ └── output.js
│ ├── ts-input-esm
│ ├── dep1.ts
│ ├── dep2.ts
│ ├── input.ts
│ ├── output.js
│ ├── package.json
│ └── tsconfig.json
│ ├── ts-path-join
│ ├── file.txt
│ ├── input.js
│ └── output.js
│ ├── tsx-input
│ ├── dep.tsx
│ ├── input.tsx
│ └── output.js
│ ├── tsx
│ ├── dep.tsx
│ ├── input.js
│ ├── lib.ts
│ ├── lib.tsx
│ └── output.js
│ ├── webpack-5-wrapper-namespace
│ ├── assets
│ │ └── dictionary.json
│ ├── input.js
│ └── output.js
│ ├── webpack-node
│ ├── input.js
│ ├── level1
│ │ ├── a.b.js
│ │ ├── c.d.js
│ │ └── level2
│ │ │ └── level3
│ │ │ └── page.js
│ └── output.js
│ ├── webpack-wrapper-dirname-inject
│ ├── input.js
│ ├── output.js
│ └── schema.prisma
│ ├── webpack-wrapper-multi
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── webpack-wrapper-name
│ ├── input.js
│ ├── mangled.js
│ └── output.js
│ ├── webpack-wrapper-null
│ ├── input.js
│ ├── mangled.js
│ └── output.js
│ ├── webpack-wrapper-strs-namespaces-large
│ ├── content
│ │ ├── guides
│ │ │ └── index.md
│ │ └── packages.json
│ ├── input.js
│ └── output.js
│ ├── webpack-wrapper-strs-namespaces
│ ├── assets
│ │ └── dictionary.json
│ ├── input.js
│ └── output.js
│ ├── webpack-wrapper
│ ├── asset.txt
│ ├── input.js
│ └── output.js
│ ├── when-wrapper
│ ├── dep.js
│ ├── input.js
│ └── output.js
│ ├── wildcard-require
│ ├── input.js
│ ├── modules
│ │ ├── module1.js
│ │ ├── module2.js
│ │ └── module3.js
│ └── output.js
│ ├── wildcard
│ ├── assets
│ │ ├── asset1.txt
│ │ ├── asset2.txt
│ │ └── asset3.txt
│ ├── input.js
│ └── output.js
│ ├── wildcard2
│ ├── assets
│ │ ├── asset1.txt
│ │ ├── asset2.txt
│ │ └── asset3.txt
│ ├── input.js
│ └── output.js
│ ├── wildcard3
│ ├── assets
│ │ ├── asset1.txt
│ │ ├── asset2.txt
│ │ └── asset3.txt
│ ├── input.js
│ └── output.js
│ ├── yarn-workspace-esm
│ ├── .gitignore
│ ├── input.js
│ ├── node_modules
│ │ ├── .yarn-integrity
│ │ └── @example
│ │ │ ├── common
│ │ │ └── web
│ ├── output.js
│ ├── package.json
│ ├── packages
│ │ ├── common
│ │ │ ├── hello.js
│ │ │ └── package.json
│ │ └── web
│ │ │ ├── index.js
│ │ │ └── package.json
│ └── yarn.lock
│ ├── yarn-workspaces
│ ├── .gitignore
│ ├── input.js
│ ├── node_modules
│ │ └── x
│ ├── output.js
│ └── packages
│ │ └── x
│ │ ├── dep.js
│ │ ├── main.ts
│ │ └── package.json
│ └── zeromq-node-gyp
│ ├── input.js
│ └── output.js
└── tsconfig.json
/.git-blame-ignore-revs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.git-blame-ignore-revs
--------------------------------------------------------------------------------
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.github/CODEOWNERS
--------------------------------------------------------------------------------
/.github/workflows/ci.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.github/workflows/ci.yml
--------------------------------------------------------------------------------
/.github/workflows/pr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.github/workflows/pr.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.gitignore
--------------------------------------------------------------------------------
/.kodiak.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.kodiak.toml
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/.prettierignore
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/LICENSE
--------------------------------------------------------------------------------
/jest.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/jest.config.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/package.json
--------------------------------------------------------------------------------
/prepare-install.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/prepare-install.js
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/readme.md
--------------------------------------------------------------------------------
/release.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | branches: ['main'],
3 | tagFormat: '${version}',
4 | };
5 |
--------------------------------------------------------------------------------
/src/analyze.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/analyze.ts
--------------------------------------------------------------------------------
/src/cli.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/cli.ts
--------------------------------------------------------------------------------
/src/fs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/fs.ts
--------------------------------------------------------------------------------
/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/index.ts
--------------------------------------------------------------------------------
/src/node-file-trace.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/node-file-trace.ts
--------------------------------------------------------------------------------
/src/resolve-dependency.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/resolve-dependency.ts
--------------------------------------------------------------------------------
/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/types.ts
--------------------------------------------------------------------------------
/src/utils/ast-helpers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/ast-helpers.ts
--------------------------------------------------------------------------------
/src/utils/binary-locators.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/binary-locators.ts
--------------------------------------------------------------------------------
/src/utils/get-package-base.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/get-package-base.ts
--------------------------------------------------------------------------------
/src/utils/interop-require.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/interop-require.ts
--------------------------------------------------------------------------------
/src/utils/sharedlib-emit.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/sharedlib-emit.ts
--------------------------------------------------------------------------------
/src/utils/special-cases.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/special-cases.ts
--------------------------------------------------------------------------------
/src/utils/static-eval.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/static-eval.ts
--------------------------------------------------------------------------------
/src/utils/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/types.ts
--------------------------------------------------------------------------------
/src/utils/wrappers.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/src/utils/wrappers.ts
--------------------------------------------------------------------------------
/test/cli.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/cli.test.js
--------------------------------------------------------------------------------
/test/ecmascript.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript.test.js
--------------------------------------------------------------------------------
/test/ecmascript/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/README.md
--------------------------------------------------------------------------------
/test/ecmascript/data-common.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-common.json
--------------------------------------------------------------------------------
/test/ecmascript/data-es2016plus.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-es2016plus.js
--------------------------------------------------------------------------------
/test/ecmascript/data-es5.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-es5.js
--------------------------------------------------------------------------------
/test/ecmascript/data-es6.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-es6.js
--------------------------------------------------------------------------------
/test/ecmascript/data-esintl.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-esintl.js
--------------------------------------------------------------------------------
/test/ecmascript/data-esnext.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/ecmascript/data-esnext.js
--------------------------------------------------------------------------------
/test/fixtures/es-module-dep.js:
--------------------------------------------------------------------------------
1 | export var p = 5;
--------------------------------------------------------------------------------
/test/fixtures/es-module.js:
--------------------------------------------------------------------------------
1 | export { p } from './es-module-dep.js';
2 |
--------------------------------------------------------------------------------
/test/fixtures/img.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/fixtures/img.jpg
--------------------------------------------------------------------------------
/test/fixtures/index.html:
--------------------------------------------------------------------------------
1 |
{{ title }}
2 |
--------------------------------------------------------------------------------
/test/fixtures/test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/fixtures/test.js
--------------------------------------------------------------------------------
/test/fixtures/test.ts:
--------------------------------------------------------------------------------
1 | export var p: number = 5;
2 |
--------------------------------------------------------------------------------
/test/fixtures/tsconfig.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/test/integration.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration.test.js
--------------------------------------------------------------------------------
/test/integration/analytics-node.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/analytics-node.js
--------------------------------------------------------------------------------
/test/integration/apollo.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/apollo.js
--------------------------------------------------------------------------------
/test/integration/argon2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/argon2.js
--------------------------------------------------------------------------------
/test/integration/auth0.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/auth0.js
--------------------------------------------------------------------------------
/test/integration/aws-sdk.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/aws-sdk.js
--------------------------------------------------------------------------------
/test/integration/axios.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/axios.js
--------------------------------------------------------------------------------
/test/integration/azure-cosmos.js:
--------------------------------------------------------------------------------
1 | require("@azure/cosmos");
2 |
3 |
--------------------------------------------------------------------------------
/test/integration/azure-storage.js:
--------------------------------------------------------------------------------
1 | require("azure-storage");
2 |
--------------------------------------------------------------------------------
/test/integration/bcrypt.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/bcrypt.js
--------------------------------------------------------------------------------
/test/integration/bindings-failure.js:
--------------------------------------------------------------------------------
1 | require('bindings')('not-found');
2 |
--------------------------------------------------------------------------------
/test/integration/browserify-middleware.js:
--------------------------------------------------------------------------------
1 | require('browserify-middleware');
2 |
--------------------------------------------------------------------------------
/test/integration/bugsnag-js.js:
--------------------------------------------------------------------------------
1 | require("@bugsnag/js");
2 |
3 | module.exports = () => {};
4 |
--------------------------------------------------------------------------------
/test/integration/bull.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/bull.js
--------------------------------------------------------------------------------
/test/integration/bullmq.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/bullmq.js
--------------------------------------------------------------------------------
/test/integration/camaro.js:
--------------------------------------------------------------------------------
1 | require('camaro')
--------------------------------------------------------------------------------
/test/integration/chromeless.js:
--------------------------------------------------------------------------------
1 | require('chromeless');
2 |
--------------------------------------------------------------------------------
/test/integration/core-js.js:
--------------------------------------------------------------------------------
1 |
2 | require("core-js").Array.prototype.map.call([], () => {});
3 |
--------------------------------------------------------------------------------
/test/integration/cowsay.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/cowsay.js
--------------------------------------------------------------------------------
/test/integration/datadog-pprof.js:
--------------------------------------------------------------------------------
1 | const dd = require('@datadog/pprof');
2 |
--------------------------------------------------------------------------------
/test/integration/dogfood.js:
--------------------------------------------------------------------------------
1 | require('../../out/node-file-trace');
2 |
--------------------------------------------------------------------------------
/test/integration/env-var.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/env-var.js
--------------------------------------------------------------------------------
/test/integration/es-get-iterator.js:
--------------------------------------------------------------------------------
1 | require('es-get-iterator');
2 |
--------------------------------------------------------------------------------
/test/integration/esbuild.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/esbuild.js
--------------------------------------------------------------------------------
/test/integration/esm.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/esm.js
--------------------------------------------------------------------------------
/test/integration/express-consolidate.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/express-consolidate.js
--------------------------------------------------------------------------------
/test/integration/express-template-engine.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/express-template-engine.js
--------------------------------------------------------------------------------
/test/integration/express-template.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/express-template.js
--------------------------------------------------------------------------------
/test/integration/express.js:
--------------------------------------------------------------------------------
1 | const app = require('express');
2 |
3 |
--------------------------------------------------------------------------------
/test/integration/fast-glob.js:
--------------------------------------------------------------------------------
1 | require('fast-glob');
2 |
--------------------------------------------------------------------------------
/test/integration/fetch-h2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/fetch-h2.js
--------------------------------------------------------------------------------
/test/integration/ffmpeg.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/ffmpeg.js
--------------------------------------------------------------------------------
/test/integration/firebase-admin.js:
--------------------------------------------------------------------------------
1 | require("firebase-admin");
--------------------------------------------------------------------------------
/test/integration/firebase.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/firebase.js
--------------------------------------------------------------------------------
/test/integration/firestore.js:
--------------------------------------------------------------------------------
1 | require("@google-cloud/firestore");
2 |
--------------------------------------------------------------------------------
/test/integration/fluent-ffmpeg.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/fluent-ffmpeg.js
--------------------------------------------------------------------------------
/test/integration/geo-tz.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/geo-tz.js
--------------------------------------------------------------------------------
/test/integration/google-bigquery.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/google-bigquery.js
--------------------------------------------------------------------------------
/test/integration/got.js:
--------------------------------------------------------------------------------
1 | require('got');
2 |
--------------------------------------------------------------------------------
/test/integration/highlights.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/highlights.js
--------------------------------------------------------------------------------
/test/integration/hot-shots.js:
--------------------------------------------------------------------------------
1 | require("hot-shots");
2 |
--------------------------------------------------------------------------------
/test/integration/ioredis.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/ioredis.js
--------------------------------------------------------------------------------
/test/integration/isomorphic-unfetch.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/isomorphic-unfetch.js
--------------------------------------------------------------------------------
/test/integration/jimp.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/jimp.js
--------------------------------------------------------------------------------
/test/integration/jugglingdb.js:
--------------------------------------------------------------------------------
1 | require("jugglingdb");
2 | module.exports = () => {};
3 |
--------------------------------------------------------------------------------
/test/integration/koa.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/koa.js
--------------------------------------------------------------------------------
/test/integration/leveldown.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/leveldown.js
--------------------------------------------------------------------------------
/test/integration/lighthouse.js:
--------------------------------------------------------------------------------
1 | require('lighthouse');
2 |
--------------------------------------------------------------------------------
/test/integration/loopback.js:
--------------------------------------------------------------------------------
1 | require("loopback");
--------------------------------------------------------------------------------
/test/integration/mailgun.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/mailgun.js
--------------------------------------------------------------------------------
/test/integration/mariadb.js:
--------------------------------------------------------------------------------
1 | require('mariadb')
2 |
--------------------------------------------------------------------------------
/test/integration/memcached.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/memcached.js
--------------------------------------------------------------------------------
/test/integration/mongoose.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/mongoose.js
--------------------------------------------------------------------------------
/test/integration/mysql.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/mysql.js
--------------------------------------------------------------------------------
/test/integration/oracledb.js:
--------------------------------------------------------------------------------
1 | require('oracledb');
2 |
--------------------------------------------------------------------------------
/test/integration/paraphrase.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/paraphrase.js
--------------------------------------------------------------------------------
/test/integration/passport-trakt.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/passport-trakt.js
--------------------------------------------------------------------------------
/test/integration/passport.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/passport.js
--------------------------------------------------------------------------------
/test/integration/path-platform.js:
--------------------------------------------------------------------------------
1 | require('path-platform');
2 |
--------------------------------------------------------------------------------
/test/integration/pdf2json.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/pdf2json.js
--------------------------------------------------------------------------------
/test/integration/pdfkit.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/pdfkit.js
--------------------------------------------------------------------------------
/test/integration/pg.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/pg.js
--------------------------------------------------------------------------------
/test/integration/pixelmatch.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/pixelmatch.js
--------------------------------------------------------------------------------
/test/integration/playwright-core.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/playwright-core.js
--------------------------------------------------------------------------------
/test/integration/polyfill-library.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/polyfill-library.js
--------------------------------------------------------------------------------
/test/integration/pug.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/pug.js
--------------------------------------------------------------------------------
/test/integration/react.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/react.js
--------------------------------------------------------------------------------
/test/integration/redis.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/redis.js
--------------------------------------------------------------------------------
/test/integration/remark-prism.mjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/remark-prism.mjs
--------------------------------------------------------------------------------
/test/integration/request.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/request.js
--------------------------------------------------------------------------------
/test/integration/rxjs.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/rxjs.js
--------------------------------------------------------------------------------
/test/integration/saslprep.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/saslprep.js
--------------------------------------------------------------------------------
/test/integration/semver.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/semver.js
--------------------------------------------------------------------------------
/test/integration/sentry.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/sentry.js
--------------------------------------------------------------------------------
/test/integration/sequelize.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/sequelize.js
--------------------------------------------------------------------------------
/test/integration/serialport.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/serialport.js
--------------------------------------------------------------------------------
/test/integration/sharp-pnpm.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/sharp-pnpm.js
--------------------------------------------------------------------------------
/test/integration/sharp.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/sharp.js
--------------------------------------------------------------------------------
/test/integration/shiki.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/shiki.js
--------------------------------------------------------------------------------
/test/integration/socket.io.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/socket.io.js
--------------------------------------------------------------------------------
/test/integration/sparql-builder.js:
--------------------------------------------------------------------------------
1 | require('@tpluscode/sparql-builder');
2 |
3 |
--------------------------------------------------------------------------------
/test/integration/stripe.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/stripe.js
--------------------------------------------------------------------------------
/test/integration/tiny-json-http.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/tiny-json-http.js
--------------------------------------------------------------------------------
/test/integration/twilio.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/twilio.js
--------------------------------------------------------------------------------
/test/integration/typescript.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/typescript.js
--------------------------------------------------------------------------------
/test/integration/uglify.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/uglify.js
--------------------------------------------------------------------------------
/test/integration/vm2.js:
--------------------------------------------------------------------------------
1 | const {VM} = require('vm2');
2 | new VM().run('console.log("HELLO WORLD")');
--------------------------------------------------------------------------------
/test/integration/vue.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/vue.js
--------------------------------------------------------------------------------
/test/integration/when.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/when.js
--------------------------------------------------------------------------------
/test/integration/zeromq.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/integration/zeromq.js
--------------------------------------------------------------------------------
/test/unit.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit.test.js
--------------------------------------------------------------------------------
/test/unit/amd-disable/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/amd-disable/input.js
--------------------------------------------------------------------------------
/test/unit/amd-disable/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/amd-disable/output.js
--------------------------------------------------------------------------------
/test/unit/array-emission/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/array-emission/input.js
--------------------------------------------------------------------------------
/test/unit/array-emission/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/array-emission/output.js
--------------------------------------------------------------------------------
/test/unit/array-emission/renderer/dom.js:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/array-emission/renderer/util.js:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/array-holes/input.js:
--------------------------------------------------------------------------------
1 | var a = [1,,2];
2 |
--------------------------------------------------------------------------------
/test/unit/array-holes/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/array-holes/output.js
--------------------------------------------------------------------------------
/test/unit/asset-conditional/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/asset-conditional/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/asset-conditional/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-conditional/input.js
--------------------------------------------------------------------------------
/test/unit/asset-conditional/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-conditional/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr-node-prefix/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr-node-prefix/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-array-expr-node-prefix/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr-node-prefix/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-array-expr-node-prefix/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-array-expr/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-array-expr/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-array-expr/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-extra/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-extra/asset2.json:
--------------------------------------------------------------------------------
1 | "hello world"
2 |
--------------------------------------------------------------------------------
/test/unit/asset-fs-extra/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-extra/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-extra/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-extra/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-babel/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-babel/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-babel/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-babel/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-babel/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-2/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-2/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-2/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-2/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-2/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-3/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-3/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-3/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-3/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-3/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-4/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-4/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-4/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-4/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-4/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-5/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-5/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-5/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-5/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-5/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-node-prefix/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-node-prefix/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-node-prefix/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es-node-prefix/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es-node-prefix/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-enc-es/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-enc-es/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-shadow/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-shadow/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-shadow/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-shadow/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-shadow/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts-no-interop/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts-no-interop/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-ts-no-interop/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts-no-interop/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-ts-no-interop/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-ts/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-path-ts/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-path-ts/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-tpl/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-tpl/input.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | console.log(fs.readFileSync(`${__dirname}/asset.txt`));
--------------------------------------------------------------------------------
/test/unit/asset-fs-inline-tpl/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inline-tpl/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining-multi/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining-multi/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inlining-multi/input.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining-multi/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inlining-multi/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining-multi/sub/asset.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining/input.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | console.log(fs.readFileSync(__dirname + '/asset.txt'));
--------------------------------------------------------------------------------
/test/unit/asset-fs-inlining/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-inlining/output.js
--------------------------------------------------------------------------------
/test/unit/asset-fs-logical/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-logical/asset2.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-fs-logical/input.js:
--------------------------------------------------------------------------------
1 | const fs = require('fs');
2 | console.log(fs.readFileSync(`${__dirname}/asset${unknown ? '1' : '2'}.txt`));
3 |
--------------------------------------------------------------------------------
/test/unit/asset-fs-logical/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-fs-logical/output.js
--------------------------------------------------------------------------------
/test/unit/asset-graceful-fs/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/asset-graceful-fs/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-graceful-fs/input.js
--------------------------------------------------------------------------------
/test/unit/asset-graceful-fs/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-graceful-fs/output.js
--------------------------------------------------------------------------------
/test/unit/asset-graceful-fs/sub/asset.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/unit/asset-node-require/input.js:
--------------------------------------------------------------------------------
1 | require('./mock.node');
2 |
--------------------------------------------------------------------------------
/test/unit/asset-node-require/mock.node:
--------------------------------------------------------------------------------
1 | asdf
--------------------------------------------------------------------------------
/test/unit/asset-node-require/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-node-require/output.js
--------------------------------------------------------------------------------
/test/unit/asset-package-json/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-package-json/input.js
--------------------------------------------------------------------------------
/test/unit/asset-package-json/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-package-json/output.js
--------------------------------------------------------------------------------
/test/unit/asset-package-json/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "package": "json"
3 | }
--------------------------------------------------------------------------------
/test/unit/asset-symlink/asset.txt:
--------------------------------------------------------------------------------
1 | ./asset1.txt
--------------------------------------------------------------------------------
/test/unit/asset-symlink/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/asset-symlink/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-symlink/input.js
--------------------------------------------------------------------------------
/test/unit/asset-symlink/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/asset-symlink/output.js
--------------------------------------------------------------------------------
/test/unit/basic-analysis-require/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/basic-analysis-require/input.js:
--------------------------------------------------------------------------------
1 | require('./dep');
2 |
--------------------------------------------------------------------------------
/test/unit/basic-analysis-require/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/basic-analysis-require/output.js
--------------------------------------------------------------------------------
/test/unit/browserify-minify/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify-minify/input.js
--------------------------------------------------------------------------------
/test/unit/browserify-minify/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify-minify/output.js
--------------------------------------------------------------------------------
/test/unit/browserify-uglify/dep1.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep1';
--------------------------------------------------------------------------------
/test/unit/browserify-uglify/dep2.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep2';
--------------------------------------------------------------------------------
/test/unit/browserify-uglify/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify-uglify/input.js
--------------------------------------------------------------------------------
/test/unit/browserify-uglify/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify-uglify/output.js
--------------------------------------------------------------------------------
/test/unit/browserify/dep1.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep1';
--------------------------------------------------------------------------------
/test/unit/browserify/dep2.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep2';
--------------------------------------------------------------------------------
/test/unit/browserify/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify/input.js
--------------------------------------------------------------------------------
/test/unit/browserify/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/browserify/output.js
--------------------------------------------------------------------------------
/test/unit/class-static/asset.txt:
--------------------------------------------------------------------------------
1 | asset
2 |
--------------------------------------------------------------------------------
/test/unit/class-static/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/class-static/input.js
--------------------------------------------------------------------------------
/test/unit/class-static/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/class-static/output.js
--------------------------------------------------------------------------------
/test/unit/datadog-pprof-node-gyp/input.js:
--------------------------------------------------------------------------------
1 | const dd = require('@datadog/pprof');
2 |
--------------------------------------------------------------------------------
/test/unit/datadog-pprof-node-gyp/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/datadog-pprof-node-gyp/output.js
--------------------------------------------------------------------------------
/test/unit/dirname-emit-concat/assets/file.txt:
--------------------------------------------------------------------------------
1 | file
--------------------------------------------------------------------------------
/test/unit/dirname-emit-concat/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-emit-concat/input.js
--------------------------------------------------------------------------------
/test/unit/dirname-emit-concat/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-emit-concat/output.js
--------------------------------------------------------------------------------
/test/unit/dirname-emit/asset.txt:
--------------------------------------------------------------------------------
1 | asset
--------------------------------------------------------------------------------
/test/unit/dirname-emit/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-emit/input.js
--------------------------------------------------------------------------------
/test/unit/dirname-emit/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-emit/output.js
--------------------------------------------------------------------------------
/test/unit/dirname-emit/subdir/file.txt:
--------------------------------------------------------------------------------
1 | file
--------------------------------------------------------------------------------
/test/unit/dirname-len/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-len/input.js
--------------------------------------------------------------------------------
/test/unit/dirname-len/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dirname-len/output.js
--------------------------------------------------------------------------------
/test/unit/dot-dot/dir/dot-dot-req.js:
--------------------------------------------------------------------------------
1 | module.exports = require('..');
2 |
--------------------------------------------------------------------------------
/test/unit/dot-dot/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dot dot';
2 |
--------------------------------------------------------------------------------
/test/unit/dot-dot/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dot-dot/input.js
--------------------------------------------------------------------------------
/test/unit/dot-dot/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/dot-dot/output.js
--------------------------------------------------------------------------------
/test/unit/esm-dynamic-import/dep.js:
--------------------------------------------------------------------------------
1 | export const foo = 'foo';
--------------------------------------------------------------------------------
/test/unit/esm-dynamic-import/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-dynamic-import/input.js
--------------------------------------------------------------------------------
/test/unit/esm-dynamic-import/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-dynamic-import/output.js
--------------------------------------------------------------------------------
/test/unit/esm-dynamic-import/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-dynamic-import/package.json
--------------------------------------------------------------------------------
/test/unit/esm-export-wildcard/all.js:
--------------------------------------------------------------------------------
1 | export * from './week';
--------------------------------------------------------------------------------
/test/unit/esm-export-wildcard/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-export-wildcard/input.js
--------------------------------------------------------------------------------
/test/unit/esm-export-wildcard/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-export-wildcard/output.js
--------------------------------------------------------------------------------
/test/unit/esm-export-wildcard/week.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-export-wildcard/week.js
--------------------------------------------------------------------------------
/test/unit/esm-paths-trailer/esm-dep.js:
--------------------------------------------------------------------------------
1 | export var hello = 'world';
--------------------------------------------------------------------------------
/test/unit/esm-paths-trailer/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-paths-trailer/input.js
--------------------------------------------------------------------------------
/test/unit/esm-paths-trailer/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-paths-trailer/output.js
--------------------------------------------------------------------------------
/test/unit/esm-paths/esm-dep.js:
--------------------------------------------------------------------------------
1 | export var hello = 'world';
--------------------------------------------------------------------------------
/test/unit/esm-paths/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-paths/input.js
--------------------------------------------------------------------------------
/test/unit/esm-paths/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm-paths/output.js
--------------------------------------------------------------------------------
/test/unit/esm/esm-dep.js:
--------------------------------------------------------------------------------
1 | export var hello = 'world';
--------------------------------------------------------------------------------
/test/unit/esm/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm/input.js
--------------------------------------------------------------------------------
/test/unit/esm/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/esm/output.js
--------------------------------------------------------------------------------
/test/unit/exports-fallback/input.js:
--------------------------------------------------------------------------------
1 | require('pkg');
2 |
--------------------------------------------------------------------------------
/test/unit/exports-fallback/node_modules/pkg/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'legacy index';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-fallback/node_modules/pkg/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-fallback/node_modules/pkg/package.json
--------------------------------------------------------------------------------
/test/unit/exports-fallback/node_modules/pkg/require-main.cjs:
--------------------------------------------------------------------------------
1 | module.exports = 'require main';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-fallback/node_modules/pkg/subdir/import-main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-fallback/node_modules/pkg/subdir/import-main.js
--------------------------------------------------------------------------------
/test/unit/exports-fallback/node_modules/pkg/subdir/package.json:
--------------------------------------------------------------------------------
1 | { "type": "module" }
2 |
--------------------------------------------------------------------------------
/test/unit/exports-fallback/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-fallback/output.js
--------------------------------------------------------------------------------
/test/unit/exports-nomodule/input.js:
--------------------------------------------------------------------------------
1 | import { x } from 'x';
2 | console.log(x);
3 |
--------------------------------------------------------------------------------
/test/unit/exports-nomodule/no.js:
--------------------------------------------------------------------------------
1 | export var y = 'y';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-nomodule/node.js:
--------------------------------------------------------------------------------
1 | export var x = 'x';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-nomodule/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-nomodule/output.js
--------------------------------------------------------------------------------
/test/unit/exports-nomodule/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-nomodule/package.json
--------------------------------------------------------------------------------
/test/unit/exports-only/input.js:
--------------------------------------------------------------------------------
1 | require('pkg');
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/exports-only/node_modules/pkg/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'legacy index';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-only/node_modules/pkg/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-only/node_modules/pkg/package.json
--------------------------------------------------------------------------------
/test/unit/exports-only/node_modules/pkg/require-main.cjs:
--------------------------------------------------------------------------------
1 | import('pkg/asdf');
2 | module.exports = 'require main';
3 |
--------------------------------------------------------------------------------
/test/unit/exports-only/node_modules/pkg/subdir/import-main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-only/node_modules/pkg/subdir/import-main.js
--------------------------------------------------------------------------------
/test/unit/exports-only/node_modules/pkg/subdir/package.json:
--------------------------------------------------------------------------------
1 | { "type": "module" }
2 |
--------------------------------------------------------------------------------
/test/unit/exports-only/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-only/output.js
--------------------------------------------------------------------------------
/test/unit/exports-path/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-path/input.js
--------------------------------------------------------------------------------
/test/unit/exports-path/node_modules/apollo-upload-client/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'legacy index';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-path/node_modules/apollo-upload-client/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-path/node_modules/apollo-upload-client/package.json
--------------------------------------------------------------------------------
/test/unit/exports-path/node_modules/apollo-upload-client/public/ReactNativeFile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-path/node_modules/apollo-upload-client/public/ReactNativeFile.js
--------------------------------------------------------------------------------
/test/unit/exports-path/node_modules/extract-files/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-path/node_modules/extract-files/package.json
--------------------------------------------------------------------------------
/test/unit/exports-path/node_modules/extract-files/public/ReactNativeFile.js:
--------------------------------------------------------------------------------
1 | module.exports = 'React Native File';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-path/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-path/output.js
--------------------------------------------------------------------------------
/test/unit/exports-wildcard/input.js:
--------------------------------------------------------------------------------
1 | import { y } from 'y/no';
2 | console.log(y);
3 |
--------------------------------------------------------------------------------
/test/unit/exports-wildcard/no.js:
--------------------------------------------------------------------------------
1 | export var x = 'x';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-wildcard/node.js:
--------------------------------------------------------------------------------
1 | export var y = 'y';
2 |
--------------------------------------------------------------------------------
/test/unit/exports-wildcard/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-wildcard/output.js
--------------------------------------------------------------------------------
/test/unit/exports-wildcard/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports-wildcard/package.json
--------------------------------------------------------------------------------
/test/unit/exports/input.js:
--------------------------------------------------------------------------------
1 | require('pkg');
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/exports/node_modules/pkg/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'legacy index';
2 |
--------------------------------------------------------------------------------
/test/unit/exports/node_modules/pkg/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports/node_modules/pkg/package.json
--------------------------------------------------------------------------------
/test/unit/exports/node_modules/pkg/require-main.cjs:
--------------------------------------------------------------------------------
1 | import('pkg/asdf');
2 | module.exports = 'require main';
3 |
--------------------------------------------------------------------------------
/test/unit/exports/node_modules/pkg/subdir/import-main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports/node_modules/pkg/subdir/import-main.js
--------------------------------------------------------------------------------
/test/unit/exports/node_modules/pkg/subdir/package.json:
--------------------------------------------------------------------------------
1 | { "type": "module" }
2 |
--------------------------------------------------------------------------------
/test/unit/exports/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/exports/output.js
--------------------------------------------------------------------------------
/test/unit/ffmpeg-installer/ffmpeg.exe:
--------------------------------------------------------------------------------
1 | TOTALLY A BINARY
2 |
--------------------------------------------------------------------------------
/test/unit/ffmpeg-installer/ffmpeg.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ffmpeg-installer/ffmpeg.js
--------------------------------------------------------------------------------
/test/unit/ffmpeg-installer/input.js:
--------------------------------------------------------------------------------
1 | let { path } = require('./ffmpeg.js');
2 | console.log(path);
--------------------------------------------------------------------------------
/test/unit/ffmpeg-installer/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ffmpeg-installer/output.js
--------------------------------------------------------------------------------
/test/unit/file-folder-slash/file-folder.js:
--------------------------------------------------------------------------------
1 | module.exports = 'file';
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/file-folder-slash/file-folder/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'folder';
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/file-folder-slash/input.js:
--------------------------------------------------------------------------------
1 | require('./file-folder/');
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/file-folder-slash/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/file-folder-slash/output.js
--------------------------------------------------------------------------------
/test/unit/filter-asset-base/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/filter-asset-base/input.js
--------------------------------------------------------------------------------
/test/unit/filter-asset-base/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/filter-asset-base/output.js
--------------------------------------------------------------------------------
/test/unit/fs-emission/asset1.txt:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/test/unit/fs-emission/asset2.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/test/unit/fs-emission/asset3.txt:
--------------------------------------------------------------------------------
1 | 3
2 |
--------------------------------------------------------------------------------
/test/unit/fs-emission/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/fs-emission/input.js
--------------------------------------------------------------------------------
/test/unit/fs-emission/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/fs-emission/output.js
--------------------------------------------------------------------------------
/test/unit/glob-dot/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/glob-dot/input.js
--------------------------------------------------------------------------------
/test/unit/glob-dot/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/glob-dot/output.js
--------------------------------------------------------------------------------
/test/unit/glob-dot/with-dot/.dot/first.txt:
--------------------------------------------------------------------------------
1 | hello
--------------------------------------------------------------------------------
/test/unit/glob-dot/without-dot/normal/first.txt:
--------------------------------------------------------------------------------
1 | hello
--------------------------------------------------------------------------------
/test/unit/import-assertions/foo.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/unit/import-assertions/info.json:
--------------------------------------------------------------------------------
1 | {
2 | "foo": "bar"
3 | }
--------------------------------------------------------------------------------
/test/unit/import-assertions/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-assertions/input.js
--------------------------------------------------------------------------------
/test/unit/import-assertions/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-assertions/output.js
--------------------------------------------------------------------------------
/test/unit/import-attributes/foo.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/test/unit/import-attributes/info.json:
--------------------------------------------------------------------------------
1 | {
2 | "foo": "bar"
3 | }
--------------------------------------------------------------------------------
/test/unit/import-attributes/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-attributes/input.js
--------------------------------------------------------------------------------
/test/unit/import-attributes/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-attributes/output.js
--------------------------------------------------------------------------------
/test/unit/import-meta-bad-url/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/import-meta-bad-url/asset2.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/import-meta-bad-url/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-bad-url/input.js
--------------------------------------------------------------------------------
/test/unit/import-meta-bad-url/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-bad-url/output.js
--------------------------------------------------------------------------------
/test/unit/import-meta-tpl-cnd/asset1.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/import-meta-tpl-cnd/asset2.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/import-meta-tpl-cnd/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-tpl-cnd/input.js
--------------------------------------------------------------------------------
/test/unit/import-meta-tpl-cnd/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-tpl-cnd/output.js
--------------------------------------------------------------------------------
/test/unit/import-meta-url/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/import-meta-url/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-url/input.js
--------------------------------------------------------------------------------
/test/unit/import-meta-url/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/import-meta-url/output.js
--------------------------------------------------------------------------------
/test/unit/imports/input.js:
--------------------------------------------------------------------------------
1 | import { x } from '#x';
2 | console.log(x);
3 |
--------------------------------------------------------------------------------
/test/unit/imports/no.js:
--------------------------------------------------------------------------------
1 | export var y = 'y';
2 |
--------------------------------------------------------------------------------
/test/unit/imports/node.js:
--------------------------------------------------------------------------------
1 | export var x = 'x';
2 |
--------------------------------------------------------------------------------
/test/unit/imports/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/imports/output.js
--------------------------------------------------------------------------------
/test/unit/imports/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/imports/package.json
--------------------------------------------------------------------------------
/test/unit/jsonc-parser-wrapper/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/jsonc-parser-wrapper/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/jsonc-parser-wrapper/input.js
--------------------------------------------------------------------------------
/test/unit/jsonc-parser-wrapper/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/jsonc-parser-wrapper/output.js
--------------------------------------------------------------------------------
/test/unit/jsx-input/dep.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/jsx-input/dep.jsx
--------------------------------------------------------------------------------
/test/unit/jsx-input/input.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/jsx-input/input.jsx
--------------------------------------------------------------------------------
/test/unit/jsx-input/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/jsx-input/output.js
--------------------------------------------------------------------------------
/test/unit/microtime-node-gyp/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/microtime-node-gyp/input.js
--------------------------------------------------------------------------------
/test/unit/microtime-node-gyp/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/microtime-node-gyp/output.js
--------------------------------------------------------------------------------
/test/unit/mixed-esm-cjs/commonjs-module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mixed-esm-cjs/commonjs-module.js
--------------------------------------------------------------------------------
/test/unit/mixed-esm-cjs/ecmascript-module.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mixed-esm-cjs/ecmascript-module.js
--------------------------------------------------------------------------------
/test/unit/mixed-esm-cjs/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mixed-esm-cjs/input.js
--------------------------------------------------------------------------------
/test/unit/mixed-esm-cjs/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mixed-esm-cjs/output.js
--------------------------------------------------------------------------------
/test/unit/module-require/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/module-require/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/module-require/input.js
--------------------------------------------------------------------------------
/test/unit/module-require/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/module-require/output.js
--------------------------------------------------------------------------------
/test/unit/mongoose/dir/connection.js:
--------------------------------------------------------------------------------
1 | module.exports = 'connection';
2 |
--------------------------------------------------------------------------------
/test/unit/mongoose/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mongoose/input.js
--------------------------------------------------------------------------------
/test/unit/mongoose/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/mongoose/output.js
--------------------------------------------------------------------------------
/test/unit/multi-input/asset-2.txt:
--------------------------------------------------------------------------------
1 | hello again
--------------------------------------------------------------------------------
/test/unit/multi-input/asset.txt:
--------------------------------------------------------------------------------
1 | hello world
--------------------------------------------------------------------------------
/test/unit/multi-input/child-1.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/child-1.js
--------------------------------------------------------------------------------
/test/unit/multi-input/child-2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/child-2.js
--------------------------------------------------------------------------------
/test/unit/multi-input/child-3.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/child-3.js
--------------------------------------------------------------------------------
/test/unit/multi-input/child-4.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/child-4.js
--------------------------------------------------------------------------------
/test/unit/multi-input/input-2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/input-2.js
--------------------------------------------------------------------------------
/test/unit/multi-input/input-3.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | require('./child-3')
--------------------------------------------------------------------------------
/test/unit/multi-input/input-4.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/input-4.js
--------------------------------------------------------------------------------
/test/unit/multi-input/input.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | require('./child-1')
3 |
--------------------------------------------------------------------------------
/test/unit/multi-input/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/multi-input/output.js
--------------------------------------------------------------------------------
/test/unit/multi-input/style.module.css:
--------------------------------------------------------------------------------
1 | body { color: green; }
--------------------------------------------------------------------------------
/test/unit/node-modules-filter/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/node-modules-filter/input.js
--------------------------------------------------------------------------------
/test/unit/node-modules-filter/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/node-modules-filter/output.js
--------------------------------------------------------------------------------
/test/unit/node-modules-filter/sub/node_modules/pkg/noemit:
--------------------------------------------------------------------------------
1 | sdf
2 |
--------------------------------------------------------------------------------
/test/unit/non-analyzable-requires/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/non-analyzable-requires/ignored.js:
--------------------------------------------------------------------------------
1 | module.exports = 'ignored';
2 |
--------------------------------------------------------------------------------
/test/unit/non-analyzable-requires/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/non-analyzable-requires/input.js
--------------------------------------------------------------------------------
/test/unit/non-analyzable-requires/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/non-analyzable-requires/output.js
--------------------------------------------------------------------------------
/test/unit/null-destructure/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/null-destructure/input.js
--------------------------------------------------------------------------------
/test/unit/null-destructure/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/null-destructure/output.js
--------------------------------------------------------------------------------
/test/unit/path-sep/asset.txt:
--------------------------------------------------------------------------------
1 | asset
2 |
--------------------------------------------------------------------------------
/test/unit/path-sep/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/path-sep/input.js
--------------------------------------------------------------------------------
/test/unit/path-sep/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/path-sep/output.js
--------------------------------------------------------------------------------
/test/unit/phantomjs-prebuilt/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/phantomjs-prebuilt/input.js
--------------------------------------------------------------------------------
/test/unit/phantomjs-prebuilt/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/phantomjs-prebuilt/output.js
--------------------------------------------------------------------------------
/test/unit/pixelmatch/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pixelmatch/input.js
--------------------------------------------------------------------------------
/test/unit/pixelmatch/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pixelmatch/output.js
--------------------------------------------------------------------------------
/test/unit/pkginfo/input.js:
--------------------------------------------------------------------------------
1 | require('pkginfo')(module, 'version', 'dependencies');
2 |
--------------------------------------------------------------------------------
/test/unit/pkginfo/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pkginfo/output.js
--------------------------------------------------------------------------------
/test/unit/pkginfo/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pkginfo/package.json
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/input.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.modules.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.modules.yaml
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/lock.yaml
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/node_modules/parse5:
--------------------------------------------------------------------------------
1 | ../parse5@6.0.1/node_modules/parse5
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5:
--------------------------------------------------------------------------------
1 | ../../parse5@6.0.1/node_modules/parse5
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/LICENSE
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/README.md
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/lib/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/lib/index.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter/package.json
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/LICENSE
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/README.md
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/doctype.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/doctype.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/error-codes.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/error-codes.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/foreign-content.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/foreign-content.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/html.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/html.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/unicode.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/common/unicode.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/mixin-base.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/parser-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/preprocessor-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/error-reporting/tokenizer-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/open-element-stack-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/parser-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/parser-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/location-info/tokenizer-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/extensions/position-tracking/preprocessor-mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/index.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/formatting-element-list.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/formatting-element-list.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/index.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/open-element-stack.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/parser/open-element-stack.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/serializer/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/serializer/index.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/index.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/named-entity-data.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/named-entity-data.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/preprocessor.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tokenizer/preprocessor.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tree-adapters/default.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/tree-adapters/default.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/utils/merge-options.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/utils/merge-options.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/utils/mixin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/lib/utils/mixin.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/node_modules/.pnpm/parse5@6.0.1/node_modules/parse5/package.json
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/node_modules/parse5-htmlparser2-tree-adapter:
--------------------------------------------------------------------------------
1 | .pnpm/parse5-htmlparser2-tree-adapter@6.0.1/node_modules/parse5-htmlparser2-tree-adapter
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/output.js
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/package.json
--------------------------------------------------------------------------------
/test/unit/pnpm-symlinks/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/pnpm-symlinks/pnpm-lock.yaml
--------------------------------------------------------------------------------
/test/unit/prisma-photon/input.js:
--------------------------------------------------------------------------------
1 | require('@generated/photon');
2 |
--------------------------------------------------------------------------------
/test/unit/prisma-photon/node_modules/@generated/photon/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'asdf'
2 |
--------------------------------------------------------------------------------
/test/unit/prisma-photon/node_modules/@generated/photon/runtime/query-engine-darwin:
--------------------------------------------------------------------------------
1 | asdf
2 |
--------------------------------------------------------------------------------
/test/unit/prisma-photon/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/prisma-photon/output.js
--------------------------------------------------------------------------------
/test/unit/process-cwd/_posts/first.md:
--------------------------------------------------------------------------------
1 | # first
--------------------------------------------------------------------------------
/test/unit/process-cwd/_posts/second.md:
--------------------------------------------------------------------------------
1 | # second
--------------------------------------------------------------------------------
/test/unit/process-cwd/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/process-cwd/input.js
--------------------------------------------------------------------------------
/test/unit/process-cwd/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/process-cwd/output.js
--------------------------------------------------------------------------------
/test/unit/process-env/a.js:
--------------------------------------------------------------------------------
1 | console.log('a');
2 |
--------------------------------------------------------------------------------
/test/unit/process-env/b.js:
--------------------------------------------------------------------------------
1 | console.log('b');
2 |
--------------------------------------------------------------------------------
/test/unit/process-env/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/process-env/input.js
--------------------------------------------------------------------------------
/test/unit/process-env/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/process-env/output.js
--------------------------------------------------------------------------------
/test/unit/processed-dependency/child-2.js:
--------------------------------------------------------------------------------
1 | console.log("I'm loaded by the other child")
--------------------------------------------------------------------------------
/test/unit/processed-dependency/child.js:
--------------------------------------------------------------------------------
1 | require('./child-2')
2 | console.log("I'm loaded by two parents")
--------------------------------------------------------------------------------
/test/unit/processed-dependency/input-cached.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | require('./parent-2')
--------------------------------------------------------------------------------
/test/unit/processed-dependency/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/processed-dependency/input.js
--------------------------------------------------------------------------------
/test/unit/processed-dependency/output-cached.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/processed-dependency/output-cached.js
--------------------------------------------------------------------------------
/test/unit/processed-dependency/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/processed-dependency/output.js
--------------------------------------------------------------------------------
/test/unit/processed-dependency/parent-1.js:
--------------------------------------------------------------------------------
1 | require('./child')
--------------------------------------------------------------------------------
/test/unit/processed-dependency/parent-2.js:
--------------------------------------------------------------------------------
1 | require('./child')
--------------------------------------------------------------------------------
/test/unit/protobuf-loop/assets/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/protobuf-loop/assets/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/protobuf-loop/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/protobuf-loop/input.js
--------------------------------------------------------------------------------
/test/unit/protobuf-loop/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/protobuf-loop/output.js
--------------------------------------------------------------------------------
/test/unit/protobuf-loop2/assets/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/protobuf-loop2/assets/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/protobuf-loop2/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/protobuf-loop2/input.js
--------------------------------------------------------------------------------
/test/unit/protobuf-loop2/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/protobuf-loop2/output.js
--------------------------------------------------------------------------------
/test/unit/require-call/input.js:
--------------------------------------------------------------------------------
1 | require(call());
2 |
--------------------------------------------------------------------------------
/test/unit/require-call/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-call/output.js
--------------------------------------------------------------------------------
/test/unit/require-dirname-tpl/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/require-dirname-tpl/input.js:
--------------------------------------------------------------------------------
1 | require(`${__dirname}/dep.js`);
--------------------------------------------------------------------------------
/test/unit/require-dirname-tpl/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-dirname-tpl/output.js
--------------------------------------------------------------------------------
/test/unit/require-dot/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'the index file';
--------------------------------------------------------------------------------
/test/unit/require-dot/input.js:
--------------------------------------------------------------------------------
1 | require('.');
2 |
--------------------------------------------------------------------------------
/test/unit/require-dot/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-dot/output.js
--------------------------------------------------------------------------------
/test/unit/require-dynamic-fallback/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/require-dynamic-fallback/input.js:
--------------------------------------------------------------------------------
1 | require(dynamic || './dep.js');
2 |
--------------------------------------------------------------------------------
/test/unit/require-dynamic-fallback/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-dynamic-fallback/output.js
--------------------------------------------------------------------------------
/test/unit/require-empty/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-empty/input.js
--------------------------------------------------------------------------------
/test/unit/require-empty/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-empty/output.js
--------------------------------------------------------------------------------
/test/unit/require-resolve/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/require-resolve/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/require-resolve/asset3.txt:
--------------------------------------------------------------------------------
1 | asset3
2 |
--------------------------------------------------------------------------------
/test/unit/require-resolve/dep1.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-resolve/dep1.js
--------------------------------------------------------------------------------
/test/unit/require-resolve/dep2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-resolve/dep2.js
--------------------------------------------------------------------------------
/test/unit/require-resolve/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-resolve/input.js
--------------------------------------------------------------------------------
/test/unit/require-resolve/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-resolve/output.js
--------------------------------------------------------------------------------
/test/unit/require-symlink/another.js:
--------------------------------------------------------------------------------
1 | module.exports = () => console.log('hello');
--------------------------------------------------------------------------------
/test/unit/require-symlink/input.js:
--------------------------------------------------------------------------------
1 | require('./symlink')
2 |
--------------------------------------------------------------------------------
/test/unit/require-symlink/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-symlink/output.js
--------------------------------------------------------------------------------
/test/unit/require-symlink/symlink:
--------------------------------------------------------------------------------
1 | another.js
--------------------------------------------------------------------------------
/test/unit/require-var-branch/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-var-branch/input.js
--------------------------------------------------------------------------------
/test/unit/require-var-branch/lib1/createsend.js:
--------------------------------------------------------------------------------
1 | module.exports = 'the index1 file';
--------------------------------------------------------------------------------
/test/unit/require-var-branch/lib2/createsend.js:
--------------------------------------------------------------------------------
1 | module.exports = 'the index2 file';
--------------------------------------------------------------------------------
/test/unit/require-var-branch/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-var-branch/output.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/require-wrapper/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper/input.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper/output.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper2/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/require-wrapper2/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper2/input.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper2/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper2/output.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper3/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/require-wrapper3/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper3/input.js
--------------------------------------------------------------------------------
/test/unit/require-wrapper3/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/require-wrapper3/output.js
--------------------------------------------------------------------------------
/test/unit/resolve-from/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/resolve-from/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/resolve-from/input.js
--------------------------------------------------------------------------------
/test/unit/resolve-from/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/resolve-from/output.js
--------------------------------------------------------------------------------
/test/unit/resolve-hook/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/resolve-hook/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/resolve-hook/input.js
--------------------------------------------------------------------------------
/test/unit/resolve-hook/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/resolve-hook/output.js
--------------------------------------------------------------------------------
/test/unit/return-emission/asset.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/return-emission/input.js:
--------------------------------------------------------------------------------
1 | function f () {
2 | return __dirname + '/asset.txt';
3 | }
4 |
--------------------------------------------------------------------------------
/test/unit/return-emission/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/return-emission/output.js
--------------------------------------------------------------------------------
/test/unit/shiki/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/shiki/input.js
--------------------------------------------------------------------------------
/test/unit/shiki/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/shiki/output.js
--------------------------------------------------------------------------------
/test/unit/string-concat/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/string-concat/input.js
--------------------------------------------------------------------------------
/test/unit/string-concat/lib/dep.js:
--------------------------------------------------------------------------------
1 | export const hello = 'world';
--------------------------------------------------------------------------------
/test/unit/string-concat/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/string-concat/output.js
--------------------------------------------------------------------------------
/test/unit/syntax-err/input.js:
--------------------------------------------------------------------------------
1 | // if (typeof __filename > 'undefine') {
2 | +
--------------------------------------------------------------------------------
/test/unit/syntax-err/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/syntax-err/output.js
--------------------------------------------------------------------------------
/test/unit/top-level-await/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/top-level-await/input.js
--------------------------------------------------------------------------------
/test/unit/top-level-await/module.js:
--------------------------------------------------------------------------------
1 | export const dep = 'dep';
--------------------------------------------------------------------------------
/test/unit/top-level-await/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/top-level-await/output.js
--------------------------------------------------------------------------------
/test/unit/ts-filter/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-filter/input.js
--------------------------------------------------------------------------------
/test/unit/ts-filter/node_modules/pkg/dep.js:
--------------------------------------------------------------------------------
1 | console.log('should not be traced');
2 |
3 |
--------------------------------------------------------------------------------
/test/unit/ts-filter/node_modules/pkg/index.js:
--------------------------------------------------------------------------------
1 | module.exports = 'main';
2 |
--------------------------------------------------------------------------------
/test/unit/ts-filter/node_modules/pkg/index.ts:
--------------------------------------------------------------------------------
1 | import './dep';
2 |
--------------------------------------------------------------------------------
/test/unit/ts-filter/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-filter/output.js
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/dep1.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/dep1.ts
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/dep2.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/dep2.ts
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/input.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/input.ts
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/output.js
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/package.json
--------------------------------------------------------------------------------
/test/unit/ts-input-esm/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-input-esm/tsconfig.json
--------------------------------------------------------------------------------
/test/unit/ts-path-join/file.txt:
--------------------------------------------------------------------------------
1 | file content
--------------------------------------------------------------------------------
/test/unit/ts-path-join/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-path-join/input.js
--------------------------------------------------------------------------------
/test/unit/ts-path-join/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/ts-path-join/output.js
--------------------------------------------------------------------------------
/test/unit/tsx-input/dep.tsx:
--------------------------------------------------------------------------------
1 | export const dep = 'dep'
--------------------------------------------------------------------------------
/test/unit/tsx-input/input.tsx:
--------------------------------------------------------------------------------
1 | import { dep } from './dep'
--------------------------------------------------------------------------------
/test/unit/tsx-input/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/tsx-input/output.js
--------------------------------------------------------------------------------
/test/unit/tsx/dep.tsx:
--------------------------------------------------------------------------------
1 | import './lib';
2 |
--------------------------------------------------------------------------------
/test/unit/tsx/input.js:
--------------------------------------------------------------------------------
1 | require('./dep');
--------------------------------------------------------------------------------
/test/unit/tsx/lib.ts:
--------------------------------------------------------------------------------
1 | included
2 |
--------------------------------------------------------------------------------
/test/unit/tsx/lib.tsx:
--------------------------------------------------------------------------------
1 | not included
2 |
--------------------------------------------------------------------------------
/test/unit/tsx/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/tsx/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-5-wrapper-namespace/assets/dictionary.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-5-wrapper-namespace/assets/dictionary.json
--------------------------------------------------------------------------------
/test/unit/webpack-5-wrapper-namespace/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-5-wrapper-namespace/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-5-wrapper-namespace/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-5-wrapper-namespace/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-node/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-node/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-node/level1/a.b.js:
--------------------------------------------------------------------------------
1 | module.exports = 'hello'
2 |
--------------------------------------------------------------------------------
/test/unit/webpack-node/level1/c.d.js:
--------------------------------------------------------------------------------
1 | module.exports = 'world'
2 |
--------------------------------------------------------------------------------
/test/unit/webpack-node/level1/level2/level3/page.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-node/level1/level2/level3/page.js
--------------------------------------------------------------------------------
/test/unit/webpack-node/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-node/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-dirname-inject/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-dirname-inject/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-dirname-inject/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-dirname-inject/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-dirname-inject/schema.prisma:
--------------------------------------------------------------------------------
1 | test
2 |
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-multi/asset.txt:
--------------------------------------------------------------------------------
1 | asset
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-multi/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-multi/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-multi/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-multi/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-name/input.js:
--------------------------------------------------------------------------------
1 | require('./mangled')
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-name/mangled.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-name/mangled.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-name/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-name/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-null/input.js:
--------------------------------------------------------------------------------
1 | require('./mangled')
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-null/mangled.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-null/mangled.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-null/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-null/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces-large/content/guides/index.md:
--------------------------------------------------------------------------------
1 | # Test
2 |
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces-large/content/packages.json:
--------------------------------------------------------------------------------
1 | {}
2 |
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces-large/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-strs-namespaces-large/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces-large/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-strs-namespaces-large/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces/assets/dictionary.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-strs-namespaces/assets/dictionary.json
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-strs-namespaces/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper-strs-namespaces/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper-strs-namespaces/output.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper/asset.txt:
--------------------------------------------------------------------------------
1 | asset
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper/input.js
--------------------------------------------------------------------------------
/test/unit/webpack-wrapper/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/webpack-wrapper/output.js
--------------------------------------------------------------------------------
/test/unit/when-wrapper/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 'dep';
2 |
--------------------------------------------------------------------------------
/test/unit/when-wrapper/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/when-wrapper/input.js
--------------------------------------------------------------------------------
/test/unit/when-wrapper/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/when-wrapper/output.js
--------------------------------------------------------------------------------
/test/unit/wildcard-require/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard-require/input.js
--------------------------------------------------------------------------------
/test/unit/wildcard-require/modules/module1.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard-require/modules/module1.js
--------------------------------------------------------------------------------
/test/unit/wildcard-require/modules/module2.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard-require/modules/module2.js
--------------------------------------------------------------------------------
/test/unit/wildcard-require/modules/module3.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard-require/modules/module3.js
--------------------------------------------------------------------------------
/test/unit/wildcard-require/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard-require/output.js
--------------------------------------------------------------------------------
/test/unit/wildcard/assets/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard/assets/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard/assets/asset3.txt:
--------------------------------------------------------------------------------
1 | asset3
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard/input.js
--------------------------------------------------------------------------------
/test/unit/wildcard/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard/output.js
--------------------------------------------------------------------------------
/test/unit/wildcard2/assets/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard2/assets/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard2/assets/asset3.txt:
--------------------------------------------------------------------------------
1 | asset3
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard2/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard2/input.js
--------------------------------------------------------------------------------
/test/unit/wildcard2/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard2/output.js
--------------------------------------------------------------------------------
/test/unit/wildcard3/assets/asset1.txt:
--------------------------------------------------------------------------------
1 | asset1
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard3/assets/asset2.txt:
--------------------------------------------------------------------------------
1 | asset2
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard3/assets/asset3.txt:
--------------------------------------------------------------------------------
1 | asset3
2 |
--------------------------------------------------------------------------------
/test/unit/wildcard3/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard3/input.js
--------------------------------------------------------------------------------
/test/unit/wildcard3/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/wildcard3/output.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/.gitignore
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/input.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/node_modules/.yarn-integrity:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/node_modules/.yarn-integrity
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/node_modules/@example/common:
--------------------------------------------------------------------------------
1 | ../../packages/common
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/node_modules/@example/web:
--------------------------------------------------------------------------------
1 | ../../packages/web
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/output.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/package.json
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/packages/common/hello.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/packages/common/hello.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/packages/common/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/packages/common/package.json
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/packages/web/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/packages/web/index.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/packages/web/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/packages/web/package.json
--------------------------------------------------------------------------------
/test/unit/yarn-workspace-esm/yarn.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspace-esm/yarn.lock
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspaces/.gitignore
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/input.js:
--------------------------------------------------------------------------------
1 | require('x');
2 |
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/node_modules/x:
--------------------------------------------------------------------------------
1 | ../packages/x
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspaces/output.js
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/packages/x/dep.js:
--------------------------------------------------------------------------------
1 | module.exports = 42;
2 |
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/packages/x/main.ts:
--------------------------------------------------------------------------------
1 | module.exports = require('./dep.js');
2 |
--------------------------------------------------------------------------------
/test/unit/yarn-workspaces/packages/x/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/yarn-workspaces/packages/x/package.json
--------------------------------------------------------------------------------
/test/unit/zeromq-node-gyp/input.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/zeromq-node-gyp/input.js
--------------------------------------------------------------------------------
/test/unit/zeromq-node-gyp/output.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/test/unit/zeromq-node-gyp/output.js
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/touchasky/nft1/HEAD/tsconfig.json
--------------------------------------------------------------------------------