@proteinjs/reflection-build 1.1.1 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/src/codegen/writeGeneratedIndex.js +9 -0
- package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
- package/dist/test/examples/source-repository/a/generated/index.js +1 -1
- package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
- package/dist/test/examples/source-repository/b/generated/index.js +1 -1
- package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
- package/package.json +4 -5
- package/src/codegen/writeGeneratedIndex.ts +12 -0
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +9 -0
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/a/dist/generated/index.js +1 -1
- package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/a/generated/index.ts +33 -38
- package/test/examples/source-repository/a/node_modules/.package-lock.json +59 -6
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierignore +4 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierrc +8 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js +18 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/index.ts +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/jest.config.js +9 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/package.json +42 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/types.ts +236 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +2 -2
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
- package/test/examples/source-repository/a/node_modules/bindings/LICENSE.md +22 -0
- package/test/examples/source-repository/a/node_modules/bindings/README.md +98 -0
- package/test/examples/source-repository/a/node_modules/bindings/bindings.js +221 -0
- package/test/examples/source-repository/a/node_modules/bindings/package.json +28 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/History.md +21 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/LICENSE +20 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/README.md +74 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.js +66 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/package.json +32 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/test.js +24 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/test/examples/source-repository/a/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/a/node_modules/fsevents/README.md +89 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.d.ts +46 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.js +83 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.node +0 -0
- package/test/examples/source-repository/a/node_modules/fsevents/package.json +62 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
- package/{LICENSE → test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/LICENSE} +6 -5
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
- package/test/examples/source-repository/a/node_modules/nan/CHANGELOG.md +557 -0
- package/test/examples/source-repository/a/node_modules/nan/CMakeLists.txt +138 -0
- package/test/examples/source-repository/a/node_modules/nan/LICENSE.md +9 -0
- package/test/examples/source-repository/a/node_modules/nan/README.md +456 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/asyncworker.md +146 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/buffers.md +54 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/callback.md +76 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/converters.md +41 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/errors.md +226 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/json.md +62 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/maybe_types.md +583 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/methods.md +672 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/new.md +147 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/node_misc.md +123 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/object_wrappers.md +263 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/persistent.md +296 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/scopes.md +73 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/script.md +58 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/string_bytes.md +62 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/v8_internals.md +199 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/v8_misc.md +85 -0
- package/test/examples/source-repository/a/node_modules/nan/include_dirs.js +1 -0
- package/test/examples/source-repository/a/node_modules/nan/nan.h +2958 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks.h +92 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_12_inl.h +520 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters.h +72 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_json.h +166 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_new.h +340 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_object_wrap.h +156 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_private.h +73 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_scriptorigin.h +76 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_string_bytes.h +305 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_weak.h +437 -0
- package/test/examples/source-repository/a/node_modules/nan/package.json +38 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/1to2.js +412 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/README.md +14 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/package.json +19 -0
- package/test/examples/source-repository/a/package-lock.json +8 -8
- package/test/examples/source-repository/a/package.json +3 -3
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +9 -0
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/b/dist/generated/index.js +1 -1
- package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/b/generated/index.ts +11 -10
- package/test/examples/source-repository/b/node_modules/.package-lock.json +57 -4
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierignore +4 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierrc +8 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js +18 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/index.ts +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/jest.config.js +9 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/package.json +42 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/types.ts +236 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +2 -2
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
- package/test/examples/source-repository/b/node_modules/bindings/LICENSE.md +22 -0
- package/test/examples/source-repository/b/node_modules/bindings/README.md +98 -0
- package/test/examples/source-repository/b/node_modules/bindings/bindings.js +221 -0
- package/test/examples/source-repository/b/node_modules/bindings/package.json +28 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/History.md +21 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/LICENSE +20 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/README.md +74 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.js +66 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/package.json +32 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/test.js +24 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/test/examples/source-repository/b/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/b/node_modules/fsevents/README.md +89 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.d.ts +46 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.js +83 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.node +0 -0
- package/test/examples/source-repository/b/node_modules/fsevents/package.json +62 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
- package/test/examples/source-repository/b/node_modules/nan/CHANGELOG.md +557 -0
- package/test/examples/source-repository/b/node_modules/nan/CMakeLists.txt +138 -0
- package/test/examples/source-repository/b/node_modules/nan/LICENSE.md +9 -0
- package/test/examples/source-repository/b/node_modules/nan/README.md +456 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/asyncworker.md +146 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/buffers.md +54 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/callback.md +76 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/converters.md +41 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/errors.md +226 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/json.md +62 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/maybe_types.md +583 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/methods.md +672 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/new.md +147 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/node_misc.md +123 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/object_wrappers.md +263 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/persistent.md +296 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/scopes.md +73 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/script.md +58 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/string_bytes.md +62 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/v8_internals.md +199 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/v8_misc.md +85 -0
- package/test/examples/source-repository/b/node_modules/nan/include_dirs.js +1 -0
- package/test/examples/source-repository/b/node_modules/nan/nan.h +2958 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks.h +92 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_12_inl.h +520 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters.h +72 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_json.h +166 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_new.h +340 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_object_wrap.h +156 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_private.h +73 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_scriptorigin.h +76 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_string_bytes.h +305 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_weak.h +437 -0
- package/test/examples/source-repository/b/node_modules/nan/package.json +38 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/1to2.js +412 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/README.md +14 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/package.json +19 -0
- package/test/examples/source-repository/b/package-lock.json +6 -6
- package/test/examples/source-repository/b/package.json +3 -3
package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fs.js","sourceRoot":"","sources":["../../src/Fs.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,8CAAwB;AACxB,sDAA+B;AAC/B,yDAA6B;AAC7B,kDAA4B;
|
|
1
|
+
{"version":3,"file":"Fs.js","sourceRoot":"","sources":["../../src/Fs.ts"],"names":[],"mappings":"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"}
|
package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts
CHANGED
|
@@ -1,14 +1,39 @@
|
|
|
1
|
+
import type { LogOptions } from './cmd';
|
|
2
|
+
type LogPassThrough = {
|
|
3
|
+
log?: LogOptions;
|
|
4
|
+
};
|
|
1
5
|
export declare class GitUtil {
|
|
2
|
-
static cloneAppTemplatePackages(directory: string): Promise<void>;
|
|
3
|
-
static init(directory: string): Promise<void>;
|
|
4
|
-
static setRemote(directory: string, remote: string): Promise<void>;
|
|
5
|
-
static addRemote(directory: string, remote: string): Promise<void>;
|
|
6
|
-
static commit(directory: string, message: string): Promise<void>;
|
|
7
|
-
static pull(directory: string): Promise<void>;
|
|
8
|
-
static push(directory: string): Promise<void>;
|
|
9
|
-
static status(directory: string): Promise<void>;
|
|
10
|
-
static addAll(directory: string): Promise<void>;
|
|
11
|
-
static sync(directory: string): Promise<void>;
|
|
6
|
+
static cloneAppTemplatePackages(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
7
|
+
static init(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
8
|
+
static setRemote(directory: string, remote: string, opts?: LogPassThrough): Promise<void>;
|
|
9
|
+
static addRemote(directory: string, remote: string, opts?: LogPassThrough): Promise<void>;
|
|
10
|
+
static commit(directory: string, message: string, opts?: LogPassThrough): Promise<void>;
|
|
11
|
+
static pull(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
12
|
+
static push(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
13
|
+
static status(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
14
|
+
static addAll(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
15
|
+
static sync(directory: string, opts?: LogPassThrough): Promise<void>;
|
|
16
|
+
/** Return the current branch name. */
|
|
17
|
+
static currentBranch(directory: string, opts?: LogPassThrough): Promise<string>;
|
|
18
|
+
/** Return the current HEAD SHA. */
|
|
19
|
+
static headSha(directory: string, opts?: LogPassThrough): Promise<string>;
|
|
20
|
+
/** Create and switch to a new branch. */
|
|
21
|
+
static createBranch(directory: string, name: string, opts?: LogPassThrough): Promise<void>;
|
|
22
|
+
/** Checkout an existing branch. */
|
|
23
|
+
static checkout(directory: string, name: string, opts?: LogPassThrough): Promise<void>;
|
|
24
|
+
/** Return a binary-safe patch between two refs (from..to). Defaults to no logging. */
|
|
25
|
+
static diffPatch(directory: string, fromRef: string, toRef: string, opts?: LogPassThrough): Promise<string>;
|
|
26
|
+
/**
|
|
27
|
+
* Apply a patch to the working tree (stdin piped). Defaults to no logging.
|
|
28
|
+
* When `staged` is true, applies to the index only; otherwise as unstaged changes.
|
|
29
|
+
* When `reverse` is true, applies the patch in reverse.
|
|
30
|
+
*/
|
|
31
|
+
static applyPatch(directory: string, patch: string, opts?: {
|
|
32
|
+
staged?: boolean;
|
|
33
|
+
reverse?: boolean;
|
|
34
|
+
log?: LogOptions;
|
|
35
|
+
}): Promise<void>;
|
|
36
|
+
static hasStagedChanges(directory: string, opts?: LogPassThrough): Promise<boolean>;
|
|
12
37
|
}
|
|
13
38
|
export declare const cloneAppTemplatePackagesFunctionName = "cloneAppTemplatePackages";
|
|
14
39
|
export declare const cloneAppTemplatePackagesFunction: {
|
|
@@ -225,6 +250,163 @@ export declare const syncFunction: {
|
|
|
225
250
|
directory: string;
|
|
226
251
|
}) => Promise<void>;
|
|
227
252
|
};
|
|
253
|
+
export declare const currentBranchFunctionName = "gitCurrentBranch";
|
|
254
|
+
export declare const currentBranchFunction: {
|
|
255
|
+
definition: {
|
|
256
|
+
name: string;
|
|
257
|
+
description: string;
|
|
258
|
+
parameters: {
|
|
259
|
+
type: string;
|
|
260
|
+
properties: {
|
|
261
|
+
directory: {
|
|
262
|
+
type: string;
|
|
263
|
+
description: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
required: string[];
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
call: (params: {
|
|
270
|
+
directory: string;
|
|
271
|
+
}) => Promise<string>;
|
|
272
|
+
};
|
|
273
|
+
export declare const headShaFunctionName = "gitHeadSha";
|
|
274
|
+
export declare const headShaFunction: {
|
|
275
|
+
definition: {
|
|
276
|
+
name: string;
|
|
277
|
+
description: string;
|
|
278
|
+
parameters: {
|
|
279
|
+
type: string;
|
|
280
|
+
properties: {
|
|
281
|
+
directory: {
|
|
282
|
+
type: string;
|
|
283
|
+
description: string;
|
|
284
|
+
};
|
|
285
|
+
};
|
|
286
|
+
required: string[];
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
call: (params: {
|
|
290
|
+
directory: string;
|
|
291
|
+
}) => Promise<string>;
|
|
292
|
+
};
|
|
293
|
+
export declare const createBranchFunctionName = "gitCreateBranch";
|
|
294
|
+
export declare const createBranchFunction: {
|
|
295
|
+
definition: {
|
|
296
|
+
name: string;
|
|
297
|
+
description: string;
|
|
298
|
+
parameters: {
|
|
299
|
+
type: string;
|
|
300
|
+
properties: {
|
|
301
|
+
directory: {
|
|
302
|
+
type: string;
|
|
303
|
+
description: string;
|
|
304
|
+
};
|
|
305
|
+
name: {
|
|
306
|
+
type: string;
|
|
307
|
+
description: string;
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
required: string[];
|
|
311
|
+
};
|
|
312
|
+
};
|
|
313
|
+
call: (params: {
|
|
314
|
+
directory: string;
|
|
315
|
+
name: string;
|
|
316
|
+
}) => Promise<void>;
|
|
317
|
+
};
|
|
318
|
+
export declare const checkoutFunctionName = "gitCheckout";
|
|
319
|
+
export declare const checkoutFunction: {
|
|
320
|
+
definition: {
|
|
321
|
+
name: string;
|
|
322
|
+
description: string;
|
|
323
|
+
parameters: {
|
|
324
|
+
type: string;
|
|
325
|
+
properties: {
|
|
326
|
+
directory: {
|
|
327
|
+
type: string;
|
|
328
|
+
description: string;
|
|
329
|
+
};
|
|
330
|
+
name: {
|
|
331
|
+
type: string;
|
|
332
|
+
description: string;
|
|
333
|
+
};
|
|
334
|
+
};
|
|
335
|
+
required: string[];
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
call: (params: {
|
|
339
|
+
directory: string;
|
|
340
|
+
name: string;
|
|
341
|
+
}) => Promise<void>;
|
|
342
|
+
};
|
|
343
|
+
export declare const diffPatchFunctionName = "gitDiffPatch";
|
|
344
|
+
export declare const diffPatchFunction: {
|
|
345
|
+
definition: {
|
|
346
|
+
name: string;
|
|
347
|
+
description: string;
|
|
348
|
+
parameters: {
|
|
349
|
+
type: string;
|
|
350
|
+
properties: {
|
|
351
|
+
directory: {
|
|
352
|
+
type: string;
|
|
353
|
+
description: string;
|
|
354
|
+
};
|
|
355
|
+
from: {
|
|
356
|
+
type: string;
|
|
357
|
+
description: string;
|
|
358
|
+
};
|
|
359
|
+
to: {
|
|
360
|
+
type: string;
|
|
361
|
+
description: string;
|
|
362
|
+
};
|
|
363
|
+
};
|
|
364
|
+
required: string[];
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
call: (params: {
|
|
368
|
+
directory: string;
|
|
369
|
+
from: string;
|
|
370
|
+
to: string;
|
|
371
|
+
}) => Promise<string>;
|
|
372
|
+
};
|
|
373
|
+
export declare const applyPatchFunctionName = "gitApplyPatch";
|
|
374
|
+
export declare const applyPatchFunction: {
|
|
375
|
+
definition: {
|
|
376
|
+
name: string;
|
|
377
|
+
description: string;
|
|
378
|
+
parameters: {
|
|
379
|
+
type: string;
|
|
380
|
+
properties: {
|
|
381
|
+
directory: {
|
|
382
|
+
type: string;
|
|
383
|
+
description: string;
|
|
384
|
+
};
|
|
385
|
+
patch: {
|
|
386
|
+
type: string;
|
|
387
|
+
description: string;
|
|
388
|
+
};
|
|
389
|
+
reverse: {
|
|
390
|
+
type: string;
|
|
391
|
+
description: string;
|
|
392
|
+
default: boolean;
|
|
393
|
+
};
|
|
394
|
+
staged: {
|
|
395
|
+
type: string;
|
|
396
|
+
description: string;
|
|
397
|
+
default: boolean;
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
required: string[];
|
|
401
|
+
};
|
|
402
|
+
};
|
|
403
|
+
call: (params: {
|
|
404
|
+
directory: string;
|
|
405
|
+
patch: string;
|
|
406
|
+
reverse?: boolean;
|
|
407
|
+
staged?: boolean;
|
|
408
|
+
}) => Promise<void>;
|
|
409
|
+
};
|
|
228
410
|
export declare const gitFunctions: ({
|
|
229
411
|
definition: {
|
|
230
412
|
name: string;
|
|
@@ -289,4 +471,109 @@ export declare const gitFunctions: ({
|
|
|
289
471
|
directory: string;
|
|
290
472
|
message: string;
|
|
291
473
|
}) => Promise<void>;
|
|
474
|
+
} | {
|
|
475
|
+
definition: {
|
|
476
|
+
name: string;
|
|
477
|
+
description: string;
|
|
478
|
+
parameters: {
|
|
479
|
+
type: string;
|
|
480
|
+
properties: {
|
|
481
|
+
directory: {
|
|
482
|
+
type: string;
|
|
483
|
+
description: string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
required: string[];
|
|
487
|
+
};
|
|
488
|
+
};
|
|
489
|
+
call: (params: {
|
|
490
|
+
directory: string;
|
|
491
|
+
}) => Promise<string>;
|
|
492
|
+
} | {
|
|
493
|
+
definition: {
|
|
494
|
+
name: string;
|
|
495
|
+
description: string;
|
|
496
|
+
parameters: {
|
|
497
|
+
type: string;
|
|
498
|
+
properties: {
|
|
499
|
+
directory: {
|
|
500
|
+
type: string;
|
|
501
|
+
description: string;
|
|
502
|
+
};
|
|
503
|
+
name: {
|
|
504
|
+
type: string;
|
|
505
|
+
description: string;
|
|
506
|
+
};
|
|
507
|
+
};
|
|
508
|
+
required: string[];
|
|
509
|
+
};
|
|
510
|
+
};
|
|
511
|
+
call: (params: {
|
|
512
|
+
directory: string;
|
|
513
|
+
name: string;
|
|
514
|
+
}) => Promise<void>;
|
|
515
|
+
} | {
|
|
516
|
+
definition: {
|
|
517
|
+
name: string;
|
|
518
|
+
description: string;
|
|
519
|
+
parameters: {
|
|
520
|
+
type: string;
|
|
521
|
+
properties: {
|
|
522
|
+
directory: {
|
|
523
|
+
type: string;
|
|
524
|
+
description: string;
|
|
525
|
+
};
|
|
526
|
+
from: {
|
|
527
|
+
type: string;
|
|
528
|
+
description: string;
|
|
529
|
+
};
|
|
530
|
+
to: {
|
|
531
|
+
type: string;
|
|
532
|
+
description: string;
|
|
533
|
+
};
|
|
534
|
+
};
|
|
535
|
+
required: string[];
|
|
536
|
+
};
|
|
537
|
+
};
|
|
538
|
+
call: (params: {
|
|
539
|
+
directory: string;
|
|
540
|
+
from: string;
|
|
541
|
+
to: string;
|
|
542
|
+
}) => Promise<string>;
|
|
543
|
+
} | {
|
|
544
|
+
definition: {
|
|
545
|
+
name: string;
|
|
546
|
+
description: string;
|
|
547
|
+
parameters: {
|
|
548
|
+
type: string;
|
|
549
|
+
properties: {
|
|
550
|
+
directory: {
|
|
551
|
+
type: string;
|
|
552
|
+
description: string;
|
|
553
|
+
};
|
|
554
|
+
patch: {
|
|
555
|
+
type: string;
|
|
556
|
+
description: string;
|
|
557
|
+
};
|
|
558
|
+
reverse: {
|
|
559
|
+
type: string;
|
|
560
|
+
description: string;
|
|
561
|
+
default: boolean;
|
|
562
|
+
};
|
|
563
|
+
staged: {
|
|
564
|
+
type: string;
|
|
565
|
+
description: string;
|
|
566
|
+
default: boolean;
|
|
567
|
+
};
|
|
568
|
+
};
|
|
569
|
+
required: string[];
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
call: (params: {
|
|
573
|
+
directory: string;
|
|
574
|
+
patch: string;
|
|
575
|
+
reverse?: boolean;
|
|
576
|
+
staged?: boolean;
|
|
577
|
+
}) => Promise<void>;
|
|
292
578
|
})[];
|
|
579
|
+
export {};
|