flingit 0.0.63 → 0.0.65
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/dist/cli/commands/dev.d.ts.map +1 -1
- package/dist/cli/commands/dev.js +9 -5
- package/dist/cli/commands/dev.js.map +1 -1
- package/dist/cli/commands/workflow.d.ts +51 -0
- package/dist/cli/commands/workflow.d.ts.map +1 -0
- package/dist/cli/commands/workflow.js +479 -0
- package/dist/cli/commands/workflow.js.map +1 -0
- package/dist/cli/deploy/bundler.d.ts.map +1 -1
- package/dist/cli/deploy/bundler.js +17 -1
- package/dist/cli/deploy/bundler.js.map +1 -1
- package/dist/cli/index.d.ts.map +1 -1
- package/dist/cli/index.js +2 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/runtime/entry.d.ts +7 -0
- package/dist/runtime/entry.d.ts.map +1 -1
- package/dist/runtime/entry.js +71 -2
- package/dist/runtime/entry.js.map +1 -1
- package/dist/types/workflow.d.ts +82 -0
- package/dist/types/workflow.d.ts.map +1 -0
- package/dist/types/workflow.js +8 -0
- package/dist/types/workflow.js.map +1 -0
- package/dist/worker-runtime/d1-event-store.d.ts +22 -0
- package/dist/worker-runtime/d1-event-store.d.ts.map +1 -0
- package/dist/worker-runtime/d1-event-store.js +227 -0
- package/dist/worker-runtime/d1-event-store.js.map +1 -0
- package/dist/worker-runtime/entry-extract.d.ts.map +1 -1
- package/dist/worker-runtime/entry-extract.js +6 -3
- package/dist/worker-runtime/entry-extract.js.map +1 -1
- package/dist/worker-runtime/entry.d.ts.map +1 -1
- package/dist/worker-runtime/entry.js +105 -3
- package/dist/worker-runtime/entry.js.map +1 -1
- package/dist/worker-runtime/index.d.ts +2 -0
- package/dist/worker-runtime/index.d.ts.map +1 -1
- package/dist/worker-runtime/index.js +5 -0
- package/dist/worker-runtime/index.js.map +1 -1
- package/dist/workflow/runtime.d.ts +56 -0
- package/dist/workflow/runtime.d.ts.map +1 -0
- package/dist/workflow/runtime.js +450 -0
- package/dist/workflow/runtime.js.map +1 -0
- package/node_modules/@glideapps/ts-necessities/LICENSE +21 -0
- package/node_modules/@glideapps/ts-necessities/README.md +16 -0
- package/node_modules/@glideapps/ts-necessities/dist/branded-strings.d.ts +39 -0
- package/node_modules/@glideapps/ts-necessities/dist/default-map.d.ts +53 -0
- package/node_modules/@glideapps/ts-necessities/dist/index.d.mts +113 -0
- package/node_modules/@glideapps/ts-necessities/dist/index.d.ts +113 -0
- package/node_modules/@glideapps/ts-necessities/dist/index.js +237 -0
- package/node_modules/@glideapps/ts-necessities/dist/index.mjs +189 -0
- package/node_modules/@glideapps/ts-necessities/package.json +52 -0
- package/node_modules/@rollup/rollup-linux-x64-gnu/README.md +3 -0
- package/node_modules/@rollup/rollup-linux-x64-gnu/package.json +25 -0
- package/node_modules/@rollup/rollup-linux-x64-gnu/rollup.linux-x64-gnu.node +0 -0
- package/node_modules/base64-js/LICENSE +21 -0
- package/node_modules/base64-js/README.md +34 -0
- package/node_modules/base64-js/base64js.min.js +1 -0
- package/node_modules/base64-js/index.d.ts +3 -0
- package/node_modules/base64-js/index.js +150 -0
- package/node_modules/base64-js/package.json +47 -0
- package/node_modules/better-sqlite3/LICENSE +21 -0
- package/node_modules/better-sqlite3/README.md +99 -0
- package/node_modules/better-sqlite3/binding.gyp +38 -0
- package/node_modules/better-sqlite3/deps/common.gypi +68 -0
- package/node_modules/better-sqlite3/deps/copy.js +31 -0
- package/node_modules/better-sqlite3/deps/defines.gypi +41 -0
- package/node_modules/better-sqlite3/deps/download.sh +122 -0
- package/node_modules/better-sqlite3/deps/patches/1208.patch +15 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.c +265994 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3.h +13968 -0
- package/node_modules/better-sqlite3/deps/sqlite3/sqlite3ext.h +730 -0
- package/node_modules/better-sqlite3/deps/sqlite3.gyp +80 -0
- package/node_modules/better-sqlite3/deps/test_extension.c +21 -0
- package/node_modules/better-sqlite3/lib/database.js +90 -0
- package/node_modules/better-sqlite3/lib/index.js +3 -0
- package/node_modules/better-sqlite3/lib/methods/aggregate.js +43 -0
- package/node_modules/better-sqlite3/lib/methods/backup.js +67 -0
- package/node_modules/better-sqlite3/lib/methods/function.js +31 -0
- package/node_modules/better-sqlite3/lib/methods/inspect.js +7 -0
- package/node_modules/better-sqlite3/lib/methods/pragma.js +12 -0
- package/node_modules/better-sqlite3/lib/methods/serialize.js +16 -0
- package/node_modules/better-sqlite3/lib/methods/table.js +189 -0
- package/node_modules/better-sqlite3/lib/methods/transaction.js +78 -0
- package/node_modules/better-sqlite3/lib/methods/wrappers.js +54 -0
- package/node_modules/better-sqlite3/lib/sqlite-error.js +20 -0
- package/node_modules/better-sqlite3/lib/util.js +12 -0
- package/node_modules/better-sqlite3/package.json +59 -0
- package/node_modules/better-sqlite3/src/addon.cpp +47 -0
- package/node_modules/better-sqlite3/src/better_sqlite3.cpp +74 -0
- package/node_modules/better-sqlite3/src/objects/backup.cpp +120 -0
- package/node_modules/better-sqlite3/src/objects/backup.hpp +36 -0
- package/node_modules/better-sqlite3/src/objects/database.cpp +417 -0
- package/node_modules/better-sqlite3/src/objects/database.hpp +103 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.cpp +113 -0
- package/node_modules/better-sqlite3/src/objects/statement-iterator.hpp +50 -0
- package/node_modules/better-sqlite3/src/objects/statement.cpp +383 -0
- package/node_modules/better-sqlite3/src/objects/statement.hpp +58 -0
- package/node_modules/better-sqlite3/src/util/bind-map.cpp +73 -0
- package/node_modules/better-sqlite3/src/util/binder.cpp +193 -0
- package/node_modules/better-sqlite3/src/util/constants.cpp +172 -0
- package/node_modules/better-sqlite3/src/util/custom-aggregate.cpp +121 -0
- package/node_modules/better-sqlite3/src/util/custom-function.cpp +59 -0
- package/node_modules/better-sqlite3/src/util/custom-table.cpp +409 -0
- package/node_modules/better-sqlite3/src/util/data-converter.cpp +17 -0
- package/node_modules/better-sqlite3/src/util/data.cpp +194 -0
- package/node_modules/better-sqlite3/src/util/helpers.cpp +109 -0
- package/node_modules/better-sqlite3/src/util/macros.cpp +83 -0
- package/node_modules/better-sqlite3/src/util/query-macros.cpp +71 -0
- package/node_modules/better-sqlite3/src/util/row-builder.cpp +49 -0
- package/node_modules/bindings/LICENSE.md +22 -0
- package/node_modules/bindings/README.md +98 -0
- package/node_modules/bindings/bindings.js +221 -0
- package/node_modules/bindings/package.json +28 -0
- package/node_modules/bl/.travis.yml +17 -0
- package/node_modules/bl/BufferList.js +396 -0
- package/node_modules/bl/LICENSE.md +13 -0
- package/node_modules/bl/README.md +247 -0
- package/node_modules/bl/bl.js +84 -0
- package/node_modules/bl/package.json +37 -0
- package/node_modules/bl/test/convert.js +21 -0
- package/node_modules/bl/test/indexOf.js +492 -0
- package/node_modules/bl/test/isBufferList.js +32 -0
- package/node_modules/bl/test/test.js +869 -0
- package/node_modules/buffer/AUTHORS.md +70 -0
- package/node_modules/buffer/LICENSE +21 -0
- package/node_modules/buffer/README.md +410 -0
- package/node_modules/buffer/index.d.ts +186 -0
- package/node_modules/buffer/index.js +1817 -0
- package/node_modules/buffer/package.json +96 -0
- package/node_modules/chownr/LICENSE +15 -0
- package/node_modules/chownr/README.md +3 -0
- package/node_modules/chownr/chownr.js +167 -0
- package/node_modules/chownr/package.json +29 -0
- package/node_modules/decompress-response/index.d.ts +22 -0
- package/node_modules/decompress-response/index.js +58 -0
- package/node_modules/decompress-response/license +9 -0
- package/node_modules/decompress-response/package.json +56 -0
- package/node_modules/decompress-response/readme.md +48 -0
- package/node_modules/deep-extend/LICENSE +20 -0
- package/node_modules/deep-extend/README.md +91 -0
- package/node_modules/deep-extend/index.js +1 -0
- package/node_modules/deep-extend/lib/deep-extend.js +150 -0
- package/node_modules/deep-extend/package.json +62 -0
- package/node_modules/detect-libc/LICENSE +201 -0
- package/node_modules/detect-libc/README.md +163 -0
- package/node_modules/detect-libc/index.d.ts +14 -0
- package/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/node_modules/detect-libc/lib/elf.js +39 -0
- package/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/node_modules/detect-libc/lib/process.js +24 -0
- package/node_modules/detect-libc/package.json +44 -0
- package/node_modules/determined/LICENSE +18 -0
- package/node_modules/determined/README.md +317 -0
- package/node_modules/determined/dist/index.cjs +370 -0
- package/node_modules/determined/dist/index.d.cts +110 -0
- package/node_modules/determined/dist/index.d.ts +110 -0
- package/node_modules/determined/dist/index.js +332 -0
- package/node_modules/determined/package.json +45 -0
- package/node_modules/end-of-stream/LICENSE +21 -0
- package/node_modules/end-of-stream/README.md +54 -0
- package/node_modules/end-of-stream/index.js +96 -0
- package/node_modules/end-of-stream/package.json +37 -0
- package/node_modules/expand-template/.travis.yml +6 -0
- package/node_modules/expand-template/LICENSE +21 -0
- package/node_modules/expand-template/README.md +43 -0
- package/node_modules/expand-template/index.js +26 -0
- package/node_modules/expand-template/package.json +29 -0
- package/node_modules/expand-template/test.js +67 -0
- package/node_modules/file-uri-to-path/.npmignore +1 -0
- package/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/node_modules/file-uri-to-path/History.md +21 -0
- package/node_modules/file-uri-to-path/LICENSE +20 -0
- package/node_modules/file-uri-to-path/README.md +74 -0
- package/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/node_modules/file-uri-to-path/index.js +66 -0
- package/node_modules/file-uri-to-path/package.json +32 -0
- package/node_modules/file-uri-to-path/test/test.js +24 -0
- package/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/node_modules/flingflow/.nvmrc +1 -0
- package/node_modules/flingflow/AGENTS.md +5 -0
- package/node_modules/flingflow/README.md +679 -0
- package/node_modules/flingflow/SPEC.md +554 -0
- package/node_modules/flingflow/TESTING.md +506 -0
- package/node_modules/flingflow/dist/backoff.d.ts +9 -0
- package/node_modules/flingflow/dist/backoff.js +14 -0
- package/node_modules/flingflow/dist/backoff.js.map +1 -0
- package/node_modules/flingflow/dist/clock.d.ts +13 -0
- package/node_modules/flingflow/dist/clock.js +21 -0
- package/node_modules/flingflow/dist/clock.js.map +1 -0
- package/node_modules/flingflow/dist/context.d.ts +8 -0
- package/node_modules/flingflow/dist/context.js +45 -0
- package/node_modules/flingflow/dist/context.js.map +1 -0
- package/node_modules/flingflow/dist/engine.d.ts +29 -0
- package/node_modules/flingflow/dist/engine.js +306 -0
- package/node_modules/flingflow/dist/engine.js.map +1 -0
- package/node_modules/flingflow/dist/index.d.ts +18 -0
- package/node_modules/flingflow/dist/index.js +14 -0
- package/node_modules/flingflow/dist/index.js.map +1 -0
- package/node_modules/flingflow/dist/recovery.d.ts +16 -0
- package/node_modules/flingflow/dist/recovery.js +118 -0
- package/node_modules/flingflow/dist/recovery.js.map +1 -0
- package/node_modules/flingflow/dist/registry.d.ts +24 -0
- package/node_modules/flingflow/dist/registry.js +29 -0
- package/node_modules/flingflow/dist/registry.js.map +1 -0
- package/node_modules/flingflow/dist/store-memory.d.ts +29 -0
- package/node_modules/flingflow/dist/store-memory.js +349 -0
- package/node_modules/flingflow/dist/store-memory.js.map +1 -0
- package/node_modules/flingflow/dist/store-sqlite.d.ts +30 -0
- package/node_modules/flingflow/dist/store-sqlite.js +400 -0
- package/node_modules/flingflow/dist/store-sqlite.js.map +1 -0
- package/node_modules/flingflow/dist/store.d.ts +39 -0
- package/node_modules/flingflow/dist/store.js +21 -0
- package/node_modules/flingflow/dist/store.js.map +1 -0
- package/node_modules/flingflow/dist/stress.d.ts +1 -0
- package/node_modules/flingflow/dist/stress.js +377 -0
- package/node_modules/flingflow/dist/stress.js.map +1 -0
- package/node_modules/flingflow/dist/transitions.d.ts +14 -0
- package/node_modules/flingflow/dist/transitions.js +28 -0
- package/node_modules/flingflow/dist/transitions.js.map +1 -0
- package/node_modules/flingflow/dist/types.d.ts +114 -0
- package/node_modules/flingflow/dist/types.js +10 -0
- package/node_modules/flingflow/dist/types.js.map +1 -0
- package/node_modules/flingflow/eslint.config.js +94 -0
- package/node_modules/flingflow/package.json +66 -0
- package/node_modules/flingflow/src/backoff.ts +14 -0
- package/node_modules/flingflow/src/clock.ts +29 -0
- package/node_modules/flingflow/src/context.ts +60 -0
- package/node_modules/flingflow/src/engine.ts +367 -0
- package/node_modules/flingflow/src/index.ts +52 -0
- package/node_modules/flingflow/src/recovery.ts +144 -0
- package/node_modules/flingflow/src/registry.ts +52 -0
- package/node_modules/flingflow/src/store-memory.ts +378 -0
- package/node_modules/flingflow/src/store-sqlite.ts +451 -0
- package/node_modules/flingflow/src/store.ts +55 -0
- package/node_modules/flingflow/src/stress.ts +423 -0
- package/node_modules/flingflow/src/transitions.ts +38 -0
- package/node_modules/flingflow/src/types.ts +84 -0
- package/node_modules/flingflow/test/backoff.test.ts +54 -0
- package/node_modules/flingflow/test/context.test.ts +94 -0
- package/node_modules/flingflow/test/engine.test.ts +362 -0
- package/node_modules/flingflow/test/fixtures.ts +58 -0
- package/node_modules/flingflow/test/recovery.test.ts +176 -0
- package/node_modules/flingflow/test/simulation.test.ts +395 -0
- package/node_modules/flingflow/test/store-conformance.ts +344 -0
- package/node_modules/flingflow/test/store-memory.test.ts +8 -0
- package/node_modules/flingflow/test/store-sqlite.test.ts +8 -0
- package/node_modules/flingflow/tsconfig.json +18 -0
- package/node_modules/flingflow/tsconfig.lint.json +5 -0
- package/node_modules/flingflow/tsconfig.typecheck.json +20 -0
- package/node_modules/flingflow/vitest.config.ts +10 -0
- package/node_modules/fs-constants/LICENSE +21 -0
- package/node_modules/fs-constants/README.md +26 -0
- package/node_modules/fs-constants/browser.js +1 -0
- package/node_modules/fs-constants/index.js +1 -0
- package/node_modules/fs-constants/package.json +19 -0
- package/node_modules/github-from-package/.travis.yml +4 -0
- package/node_modules/github-from-package/LICENSE +18 -0
- package/node_modules/github-from-package/example/package.json +8 -0
- package/node_modules/github-from-package/example/url.js +3 -0
- package/node_modules/github-from-package/index.js +17 -0
- package/node_modules/github-from-package/package.json +30 -0
- package/node_modules/github-from-package/readme.markdown +53 -0
- package/node_modules/github-from-package/test/a.json +8 -0
- package/node_modules/github-from-package/test/b.json +5 -0
- package/node_modules/github-from-package/test/c.json +5 -0
- package/node_modules/github-from-package/test/d.json +7 -0
- package/node_modules/github-from-package/test/e.json +5 -0
- package/node_modules/github-from-package/test/url.js +19 -0
- package/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/ieee754/README.md +51 -0
- package/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/ieee754/index.js +85 -0
- package/node_modules/ieee754/package.json +52 -0
- package/node_modules/inherits/LICENSE +16 -0
- package/node_modules/inherits/README.md +42 -0
- package/node_modules/inherits/inherits.js +9 -0
- package/node_modules/inherits/inherits_browser.js +27 -0
- package/node_modules/inherits/package.json +29 -0
- package/node_modules/ini/LICENSE +15 -0
- package/node_modules/ini/README.md +102 -0
- package/node_modules/ini/ini.js +206 -0
- package/node_modules/ini/package.json +33 -0
- package/node_modules/mimic-response/index.d.ts +17 -0
- package/node_modules/mimic-response/index.js +77 -0
- package/node_modules/mimic-response/license +9 -0
- package/node_modules/mimic-response/package.json +42 -0
- package/node_modules/mimic-response/readme.md +78 -0
- package/node_modules/minimist/.eslintrc +29 -0
- package/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/node_modules/minimist/.nycrc +14 -0
- package/node_modules/minimist/CHANGELOG.md +298 -0
- package/node_modules/minimist/LICENSE +18 -0
- package/node_modules/minimist/README.md +121 -0
- package/node_modules/minimist/example/parse.js +4 -0
- package/node_modules/minimist/index.js +263 -0
- package/node_modules/minimist/package.json +75 -0
- package/node_modules/minimist/test/all_bool.js +34 -0
- package/node_modules/minimist/test/bool.js +177 -0
- package/node_modules/minimist/test/dash.js +43 -0
- package/node_modules/minimist/test/default_bool.js +37 -0
- package/node_modules/minimist/test/dotted.js +24 -0
- package/node_modules/minimist/test/kv_short.js +32 -0
- package/node_modules/minimist/test/long.js +33 -0
- package/node_modules/minimist/test/num.js +38 -0
- package/node_modules/minimist/test/parse.js +209 -0
- package/node_modules/minimist/test/parse_modified.js +11 -0
- package/node_modules/minimist/test/proto.js +64 -0
- package/node_modules/minimist/test/short.js +69 -0
- package/node_modules/minimist/test/stop_early.js +17 -0
- package/node_modules/minimist/test/unknown.js +104 -0
- package/node_modules/minimist/test/whitespace.js +10 -0
- package/node_modules/mkdirp-classic/LICENSE +21 -0
- package/node_modules/mkdirp-classic/README.md +18 -0
- package/node_modules/mkdirp-classic/index.js +98 -0
- package/node_modules/mkdirp-classic/package.json +18 -0
- package/node_modules/napi-build-utils/.github/workflows/run-npm-tests.yml +31 -0
- package/node_modules/napi-build-utils/LICENSE +21 -0
- package/node_modules/napi-build-utils/README.md +52 -0
- package/node_modules/napi-build-utils/index.js +214 -0
- package/node_modules/napi-build-utils/index.md +0 -0
- package/node_modules/napi-build-utils/package.json +42 -0
- package/node_modules/neverthrow/LICENSE +22 -0
- package/node_modules/neverthrow/README.md +1683 -0
- package/node_modules/neverthrow/dist/index.cjs.js +510 -0
- package/node_modules/neverthrow/dist/index.d.ts +408 -0
- package/node_modules/neverthrow/dist/index.es.js +497 -0
- package/node_modules/neverthrow/package.json +64 -0
- package/node_modules/node-abi/LICENSE +21 -0
- package/node_modules/node-abi/README.md +54 -0
- package/node_modules/node-abi/abi_registry.json +425 -0
- package/node_modules/node-abi/index.js +179 -0
- package/node_modules/node-abi/package.json +45 -0
- package/node_modules/once/LICENSE +15 -0
- package/node_modules/once/README.md +79 -0
- package/node_modules/once/once.js +42 -0
- package/node_modules/once/package.json +33 -0
- package/node_modules/prebuild-install/CHANGELOG.md +131 -0
- package/node_modules/prebuild-install/CONTRIBUTING.md +6 -0
- package/node_modules/prebuild-install/LICENSE +21 -0
- package/node_modules/prebuild-install/README.md +163 -0
- package/node_modules/prebuild-install/asset.js +44 -0
- package/node_modules/prebuild-install/bin.js +78 -0
- package/node_modules/prebuild-install/download.js +142 -0
- package/node_modules/prebuild-install/error.js +14 -0
- package/node_modules/prebuild-install/help.txt +16 -0
- package/node_modules/prebuild-install/index.js +1 -0
- package/node_modules/prebuild-install/log.js +33 -0
- package/node_modules/prebuild-install/package.json +67 -0
- package/node_modules/prebuild-install/proxy.js +35 -0
- package/node_modules/prebuild-install/rc.js +64 -0
- package/node_modules/prebuild-install/util.js +143 -0
- package/node_modules/pump/.github/FUNDING.yml +2 -0
- package/node_modules/pump/.travis.yml +5 -0
- package/node_modules/pump/LICENSE +21 -0
- package/node_modules/pump/README.md +74 -0
- package/node_modules/pump/SECURITY.md +5 -0
- package/node_modules/pump/index.js +86 -0
- package/node_modules/pump/package.json +24 -0
- package/node_modules/pump/test-browser.js +66 -0
- package/node_modules/pump/test-node.js +53 -0
- package/node_modules/rc/LICENSE.APACHE2 +15 -0
- package/node_modules/rc/LICENSE.BSD +26 -0
- package/node_modules/rc/LICENSE.MIT +24 -0
- package/node_modules/rc/README.md +227 -0
- package/node_modules/rc/browser.js +7 -0
- package/node_modules/rc/cli.js +4 -0
- package/node_modules/rc/index.js +53 -0
- package/node_modules/rc/lib/utils.js +104 -0
- package/node_modules/rc/package.json +29 -0
- package/node_modules/rc/test/ini.js +16 -0
- package/node_modules/rc/test/nested-env-vars.js +50 -0
- package/node_modules/rc/test/test.js +59 -0
- package/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/node_modules/readable-stream/LICENSE +47 -0
- package/node_modules/readable-stream/README.md +106 -0
- package/node_modules/readable-stream/errors-browser.js +127 -0
- package/node_modules/readable-stream/errors.js +116 -0
- package/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/node_modules/readable-stream/package.json +68 -0
- package/node_modules/readable-stream/readable-browser.js +9 -0
- package/node_modules/readable-stream/readable.js +16 -0
- package/node_modules/safe-buffer/LICENSE +21 -0
- package/node_modules/safe-buffer/README.md +584 -0
- package/node_modules/safe-buffer/index.d.ts +187 -0
- package/node_modules/safe-buffer/index.js +65 -0
- package/node_modules/safe-buffer/package.json +51 -0
- package/node_modules/semver/LICENSE +15 -0
- package/node_modules/semver/README.md +664 -0
- package/node_modules/semver/bin/semver.js +191 -0
- package/node_modules/semver/classes/comparator.js +143 -0
- package/node_modules/semver/classes/index.js +7 -0
- package/node_modules/semver/classes/range.js +557 -0
- package/node_modules/semver/classes/semver.js +333 -0
- package/node_modules/semver/functions/clean.js +8 -0
- package/node_modules/semver/functions/cmp.js +54 -0
- package/node_modules/semver/functions/coerce.js +62 -0
- package/node_modules/semver/functions/compare-build.js +9 -0
- package/node_modules/semver/functions/compare-loose.js +5 -0
- package/node_modules/semver/functions/compare.js +7 -0
- package/node_modules/semver/functions/diff.js +60 -0
- package/node_modules/semver/functions/eq.js +5 -0
- package/node_modules/semver/functions/gt.js +5 -0
- package/node_modules/semver/functions/gte.js +5 -0
- package/node_modules/semver/functions/inc.js +21 -0
- package/node_modules/semver/functions/lt.js +5 -0
- package/node_modules/semver/functions/lte.js +5 -0
- package/node_modules/semver/functions/major.js +5 -0
- package/node_modules/semver/functions/minor.js +5 -0
- package/node_modules/semver/functions/neq.js +5 -0
- package/node_modules/semver/functions/parse.js +18 -0
- package/node_modules/semver/functions/patch.js +5 -0
- package/node_modules/semver/functions/prerelease.js +8 -0
- package/node_modules/semver/functions/rcompare.js +5 -0
- package/node_modules/semver/functions/rsort.js +5 -0
- package/node_modules/semver/functions/satisfies.js +12 -0
- package/node_modules/semver/functions/sort.js +5 -0
- package/node_modules/semver/functions/valid.js +8 -0
- package/node_modules/semver/index.js +91 -0
- package/node_modules/semver/internal/constants.js +37 -0
- package/node_modules/semver/internal/debug.js +11 -0
- package/node_modules/semver/internal/identifiers.js +29 -0
- package/node_modules/semver/internal/lrucache.js +42 -0
- package/node_modules/semver/internal/parse-options.js +17 -0
- package/node_modules/semver/internal/re.js +223 -0
- package/node_modules/semver/package.json +78 -0
- package/node_modules/semver/preload.js +4 -0
- package/node_modules/semver/range.bnf +16 -0
- package/node_modules/semver/ranges/gtr.js +6 -0
- package/node_modules/semver/ranges/intersects.js +9 -0
- package/node_modules/semver/ranges/ltr.js +6 -0
- package/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/node_modules/semver/ranges/min-version.js +63 -0
- package/node_modules/semver/ranges/outside.js +82 -0
- package/node_modules/semver/ranges/simplify.js +49 -0
- package/node_modules/semver/ranges/subset.js +249 -0
- package/node_modules/semver/ranges/to-comparators.js +10 -0
- package/node_modules/semver/ranges/valid.js +13 -0
- package/node_modules/simple-concat/.travis.yml +3 -0
- package/node_modules/simple-concat/LICENSE +20 -0
- package/node_modules/simple-concat/README.md +44 -0
- package/node_modules/simple-concat/index.js +15 -0
- package/node_modules/simple-concat/package.json +47 -0
- package/node_modules/simple-concat/test/basic.js +41 -0
- package/node_modules/simple-get/.github/dependabot.yml +15 -0
- package/node_modules/simple-get/.github/workflows/ci.yml +23 -0
- package/node_modules/simple-get/LICENSE +20 -0
- package/node_modules/simple-get/README.md +333 -0
- package/node_modules/simple-get/index.js +108 -0
- package/node_modules/simple-get/package.json +67 -0
- package/node_modules/string_decoder/LICENSE +48 -0
- package/node_modules/string_decoder/README.md +47 -0
- package/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/node_modules/string_decoder/package.json +34 -0
- package/node_modules/strip-json-comments/index.js +70 -0
- package/node_modules/strip-json-comments/license +21 -0
- package/node_modules/strip-json-comments/package.json +42 -0
- package/node_modules/strip-json-comments/readme.md +64 -0
- package/node_modules/tar-fs/.travis.yml +6 -0
- package/node_modules/tar-fs/LICENSE +21 -0
- package/node_modules/tar-fs/README.md +165 -0
- package/node_modules/tar-fs/index.js +363 -0
- package/node_modules/tar-fs/package.json +41 -0
- package/node_modules/tar-fs/test/fixtures/a/hello.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/b/a/test.txt +1 -0
- package/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/node_modules/tar-fs/test/index.js +346 -0
- package/node_modules/tar-stream/LICENSE +21 -0
- package/node_modules/tar-stream/README.md +168 -0
- package/node_modules/tar-stream/extract.js +257 -0
- package/node_modules/tar-stream/headers.js +295 -0
- package/node_modules/tar-stream/index.js +2 -0
- package/node_modules/tar-stream/pack.js +255 -0
- package/node_modules/tar-stream/package.json +58 -0
- package/node_modules/tar-stream/sandbox.js +11 -0
- package/node_modules/tunnel-agent/LICENSE +55 -0
- package/node_modules/tunnel-agent/README.md +4 -0
- package/node_modules/tunnel-agent/index.js +244 -0
- package/node_modules/tunnel-agent/package.json +22 -0
- package/node_modules/util-deprecate/History.md +16 -0
- package/node_modules/util-deprecate/LICENSE +24 -0
- package/node_modules/util-deprecate/README.md +53 -0
- package/node_modules/util-deprecate/browser.js +67 -0
- package/node_modules/util-deprecate/node.js +6 -0
- package/node_modules/util-deprecate/package.json +27 -0
- package/node_modules/wrappy/LICENSE +15 -0
- package/node_modules/wrappy/README.md +36 -0
- package/node_modules/wrappy/package.json +29 -0
- package/node_modules/wrappy/wrappy.js +33 -0
- package/package.json +12 -2
- package/templates/default/dot-claude/skills/fling/.hash +1 -1
- package/templates/default/dot-claude/skills/fling/SKILL.md +56 -29
- package/templates/default/dot-claude/skills/fling/references/WORKFLOWS.md +368 -0
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
var once = require('once');
|
|
2
|
+
|
|
3
|
+
var noop = function() {};
|
|
4
|
+
|
|
5
|
+
var qnt = global.Bare ? queueMicrotask : process.nextTick.bind(process);
|
|
6
|
+
|
|
7
|
+
var isRequest = function(stream) {
|
|
8
|
+
return stream.setHeader && typeof stream.abort === 'function';
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
var isChildProcess = function(stream) {
|
|
12
|
+
return stream.stdio && Array.isArray(stream.stdio) && stream.stdio.length === 3
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
var eos = function(stream, opts, callback) {
|
|
16
|
+
if (typeof opts === 'function') return eos(stream, null, opts);
|
|
17
|
+
if (!opts) opts = {};
|
|
18
|
+
|
|
19
|
+
callback = once(callback || noop);
|
|
20
|
+
|
|
21
|
+
var ws = stream._writableState;
|
|
22
|
+
var rs = stream._readableState;
|
|
23
|
+
var readable = opts.readable || (opts.readable !== false && stream.readable);
|
|
24
|
+
var writable = opts.writable || (opts.writable !== false && stream.writable);
|
|
25
|
+
var cancelled = false;
|
|
26
|
+
|
|
27
|
+
var onlegacyfinish = function() {
|
|
28
|
+
if (!stream.writable) onfinish();
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
var onfinish = function() {
|
|
32
|
+
writable = false;
|
|
33
|
+
if (!readable) callback.call(stream);
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
var onend = function() {
|
|
37
|
+
readable = false;
|
|
38
|
+
if (!writable) callback.call(stream);
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
var onexit = function(exitCode) {
|
|
42
|
+
callback.call(stream, exitCode ? new Error('exited with error code: ' + exitCode) : null);
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
var onerror = function(err) {
|
|
46
|
+
callback.call(stream, err);
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
var onclose = function() {
|
|
50
|
+
qnt(onclosenexttick);
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
var onclosenexttick = function() {
|
|
54
|
+
if (cancelled) return;
|
|
55
|
+
if (readable && !(rs && (rs.ended && !rs.destroyed))) return callback.call(stream, new Error('premature close'));
|
|
56
|
+
if (writable && !(ws && (ws.ended && !ws.destroyed))) return callback.call(stream, new Error('premature close'));
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
var onrequest = function() {
|
|
60
|
+
stream.req.on('finish', onfinish);
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
if (isRequest(stream)) {
|
|
64
|
+
stream.on('complete', onfinish);
|
|
65
|
+
stream.on('abort', onclose);
|
|
66
|
+
if (stream.req) onrequest();
|
|
67
|
+
else stream.on('request', onrequest);
|
|
68
|
+
} else if (writable && !ws) { // legacy streams
|
|
69
|
+
stream.on('end', onlegacyfinish);
|
|
70
|
+
stream.on('close', onlegacyfinish);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (isChildProcess(stream)) stream.on('exit', onexit);
|
|
74
|
+
|
|
75
|
+
stream.on('end', onend);
|
|
76
|
+
stream.on('finish', onfinish);
|
|
77
|
+
if (opts.error !== false) stream.on('error', onerror);
|
|
78
|
+
stream.on('close', onclose);
|
|
79
|
+
|
|
80
|
+
return function() {
|
|
81
|
+
cancelled = true;
|
|
82
|
+
stream.removeListener('complete', onfinish);
|
|
83
|
+
stream.removeListener('abort', onclose);
|
|
84
|
+
stream.removeListener('request', onrequest);
|
|
85
|
+
if (stream.req) stream.req.removeListener('finish', onfinish);
|
|
86
|
+
stream.removeListener('end', onlegacyfinish);
|
|
87
|
+
stream.removeListener('close', onlegacyfinish);
|
|
88
|
+
stream.removeListener('finish', onfinish);
|
|
89
|
+
stream.removeListener('exit', onexit);
|
|
90
|
+
stream.removeListener('end', onend);
|
|
91
|
+
stream.removeListener('error', onerror);
|
|
92
|
+
stream.removeListener('close', onclose);
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
|
|
96
|
+
module.exports = eos;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "end-of-stream",
|
|
3
|
+
"version": "1.4.5",
|
|
4
|
+
"description": "Call a callback when a readable/writable/duplex stream has completed or failed.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git://github.com/mafintosh/end-of-stream.git"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {
|
|
10
|
+
"once": "^1.4.0"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "node test.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"index.js"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"stream",
|
|
20
|
+
"streams",
|
|
21
|
+
"callback",
|
|
22
|
+
"finish",
|
|
23
|
+
"close",
|
|
24
|
+
"end",
|
|
25
|
+
"wait"
|
|
26
|
+
],
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/mafintosh/end-of-stream/issues"
|
|
29
|
+
},
|
|
30
|
+
"homepage": "https://github.com/mafintosh/end-of-stream",
|
|
31
|
+
"main": "index.js",
|
|
32
|
+
"author": "Mathias Buus <mathiasbuus@gmail.com>",
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"tape": "^4.11.0"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Lars-Magnus Skog
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# expand-template
|
|
2
|
+
|
|
3
|
+
> Expand placeholders in a template string.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/expand-template)
|
|
6
|
+

|
|
7
|
+
[](https://travis-ci.org/ralphtheninja/expand-template)
|
|
8
|
+
[](https://standardjs.com)
|
|
9
|
+
|
|
10
|
+
## Install
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
$ npm i expand-template -S
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
Default functionality expands templates using `{}` as separators for string placeholders.
|
|
19
|
+
|
|
20
|
+
```js
|
|
21
|
+
var expand = require('expand-template')()
|
|
22
|
+
var template = '{foo}/{foo}/{bar}/{bar}'
|
|
23
|
+
console.log(expand(template, {
|
|
24
|
+
foo: 'BAR',
|
|
25
|
+
bar: 'FOO'
|
|
26
|
+
}))
|
|
27
|
+
// -> BAR/BAR/FOO/FOO
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Custom separators:
|
|
31
|
+
|
|
32
|
+
```js
|
|
33
|
+
var expand = require('expand-template')({ sep: '[]' })
|
|
34
|
+
var template = '[foo]/[foo]/[bar]/[bar]'
|
|
35
|
+
console.log(expand(template, {
|
|
36
|
+
foo: 'BAR',
|
|
37
|
+
bar: 'FOO'
|
|
38
|
+
}))
|
|
39
|
+
// -> BAR/BAR/FOO/FOO
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## License
|
|
43
|
+
All code, unless stated otherwise, is dual-licensed under [`WTFPL`](http://www.wtfpl.net/txt/copying/) and [`MIT`](https://opensource.org/licenses/MIT).
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
module.exports = function (opts) {
|
|
2
|
+
var sep = opts ? opts.sep : '{}'
|
|
3
|
+
var len = sep.length
|
|
4
|
+
|
|
5
|
+
var whitespace = '\\s*'
|
|
6
|
+
var left = escape(sep.substring(0, len / 2)) + whitespace
|
|
7
|
+
var right = whitespace + escape(sep.substring(len / 2, len))
|
|
8
|
+
|
|
9
|
+
return function (template, values) {
|
|
10
|
+
Object.keys(values).forEach(function (key) {
|
|
11
|
+
var value = String(values[key]).replace(/\$/g, '$$$$')
|
|
12
|
+
template = template.replace(regExp(key), value)
|
|
13
|
+
})
|
|
14
|
+
return template
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function escape (s) {
|
|
18
|
+
return [].map.call(s, function (char) {
|
|
19
|
+
return '\\' + char
|
|
20
|
+
}).join('')
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function regExp (key) {
|
|
24
|
+
return new RegExp(left + key + right, 'g')
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "expand-template",
|
|
3
|
+
"version": "2.0.3",
|
|
4
|
+
"description": "Expand placeholders in a template string",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ralphtheninja/expand-template.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/ralphtheninja/expand-template",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"test": "tape test.js && standard"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"template",
|
|
16
|
+
"expand",
|
|
17
|
+
"replace"
|
|
18
|
+
],
|
|
19
|
+
"author": "LM <ralphtheninja@riseup.net>",
|
|
20
|
+
"license": "(MIT OR WTFPL)",
|
|
21
|
+
"dependencies": {},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"standard": "^12.0.0",
|
|
24
|
+
"tape": "^4.2.2"
|
|
25
|
+
},
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=6"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
var test = require('tape')
|
|
2
|
+
var Expand = require('./')
|
|
3
|
+
|
|
4
|
+
test('default expands {} placeholders', function (t) {
|
|
5
|
+
var expand = Expand()
|
|
6
|
+
t.equal(typeof expand, 'function', 'is a function')
|
|
7
|
+
t.equal(expand('{foo}/{bar}', {
|
|
8
|
+
foo: 'BAR', bar: 'FOO'
|
|
9
|
+
}), 'BAR/FOO')
|
|
10
|
+
t.equal(expand('{foo}{foo}{foo}', {
|
|
11
|
+
foo: 'FOO'
|
|
12
|
+
}), 'FOOFOOFOO', 'expands one placeholder many times')
|
|
13
|
+
t.end()
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
test('support for custom separators', function (t) {
|
|
17
|
+
var expand = Expand({ sep: '[]' })
|
|
18
|
+
t.equal(expand('[foo]/[bar]', {
|
|
19
|
+
foo: 'BAR', bar: 'FOO'
|
|
20
|
+
}), 'BAR/FOO')
|
|
21
|
+
t.equal(expand('[foo][foo][foo]', {
|
|
22
|
+
foo: 'FOO'
|
|
23
|
+
}), 'FOOFOOFOO', 'expands one placeholder many times')
|
|
24
|
+
t.end()
|
|
25
|
+
})
|
|
26
|
+
|
|
27
|
+
test('support for longer custom separators', function (t) {
|
|
28
|
+
var expand = Expand({ sep: '[[]]' })
|
|
29
|
+
t.equal(expand('[[foo]]/[[bar]]', {
|
|
30
|
+
foo: 'BAR', bar: 'FOO'
|
|
31
|
+
}), 'BAR/FOO')
|
|
32
|
+
t.equal(expand('[[foo]][[foo]][[foo]]', {
|
|
33
|
+
foo: 'FOO'
|
|
34
|
+
}), 'FOOFOOFOO', 'expands one placeholder many times')
|
|
35
|
+
t.end()
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
test('whitespace-insensitive', function (t) {
|
|
39
|
+
var expand = Expand({ sep: '[]' })
|
|
40
|
+
t.equal(expand('[ foo ]/[ bar ]', {
|
|
41
|
+
foo: 'BAR', bar: 'FOO'
|
|
42
|
+
}), 'BAR/FOO')
|
|
43
|
+
t.equal(expand('[ foo ][ foo ][ foo]', {
|
|
44
|
+
foo: 'FOO'
|
|
45
|
+
}), 'FOOFOOFOO', 'expands one placeholder many times')
|
|
46
|
+
t.end()
|
|
47
|
+
})
|
|
48
|
+
|
|
49
|
+
test('dollar escape', function (t) {
|
|
50
|
+
var expand = Expand()
|
|
51
|
+
t.equal(expand('before {foo} after', {
|
|
52
|
+
foo: '$'
|
|
53
|
+
}), 'before $ after')
|
|
54
|
+
t.equal(expand('before {foo} after', {
|
|
55
|
+
foo: '$&'
|
|
56
|
+
}), 'before $& after')
|
|
57
|
+
t.equal(expand('before {foo} after', {
|
|
58
|
+
foo: '$`'
|
|
59
|
+
}), 'before $` after')
|
|
60
|
+
t.equal(expand('before {foo} after', {
|
|
61
|
+
foo: '$\''
|
|
62
|
+
}), 'before $\' after')
|
|
63
|
+
t.equal(expand('before {foo} after', {
|
|
64
|
+
foo: '$0'
|
|
65
|
+
}), 'before $0 after')
|
|
66
|
+
t.end()
|
|
67
|
+
})
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/node_modules
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
sudo: false
|
|
2
|
+
|
|
3
|
+
language: node_js
|
|
4
|
+
|
|
5
|
+
node_js:
|
|
6
|
+
- "0.8"
|
|
7
|
+
- "0.10"
|
|
8
|
+
- "0.12"
|
|
9
|
+
- "1"
|
|
10
|
+
- "2"
|
|
11
|
+
- "3"
|
|
12
|
+
- "4"
|
|
13
|
+
- "5"
|
|
14
|
+
- "6"
|
|
15
|
+
- "7"
|
|
16
|
+
- "8"
|
|
17
|
+
|
|
18
|
+
install:
|
|
19
|
+
- PATH="`npm bin`:`npm bin -g`:$PATH"
|
|
20
|
+
# Node 0.8 comes with a too obsolete npm
|
|
21
|
+
- if [[ "`node --version`" =~ ^v0\.8\. ]]; then npm install -g npm@1.4.28 ; fi
|
|
22
|
+
# Install dependencies and build
|
|
23
|
+
- npm install
|
|
24
|
+
|
|
25
|
+
script:
|
|
26
|
+
# Output useful info for debugging
|
|
27
|
+
- node --version
|
|
28
|
+
- npm --version
|
|
29
|
+
# Run tests
|
|
30
|
+
- npm test
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
1.0.0 / 2017-07-06
|
|
3
|
+
==================
|
|
4
|
+
|
|
5
|
+
* update "mocha" to v3
|
|
6
|
+
* fixed unicode URI decoding (#6)
|
|
7
|
+
* add typings for Typescript
|
|
8
|
+
* README: use SVG Travis-CI badge
|
|
9
|
+
* add LICENSE file (MIT)
|
|
10
|
+
* add .travis.yml file (testing Node.js 0.8 through 8 currently)
|
|
11
|
+
* add README.md file
|
|
12
|
+
|
|
13
|
+
0.0.2 / 2014-01-27
|
|
14
|
+
==================
|
|
15
|
+
|
|
16
|
+
* index: invert the path separators on Windows
|
|
17
|
+
|
|
18
|
+
0.0.1 / 2014-01-27
|
|
19
|
+
==================
|
|
20
|
+
|
|
21
|
+
* initial commit
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
'Software'), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
17
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
18
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
19
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
20
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
file-uri-to-path
|
|
2
|
+
================
|
|
3
|
+
### Convert a `file:` URI to a file path
|
|
4
|
+
[](https://travis-ci.org/TooTallNate/file-uri-to-path)
|
|
5
|
+
|
|
6
|
+
Accepts a `file:` URI and returns a regular file path suitable for use with the
|
|
7
|
+
`fs` module functions.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Installation
|
|
11
|
+
------------
|
|
12
|
+
|
|
13
|
+
Install with `npm`:
|
|
14
|
+
|
|
15
|
+
``` bash
|
|
16
|
+
$ npm install file-uri-to-path
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Example
|
|
21
|
+
-------
|
|
22
|
+
|
|
23
|
+
``` js
|
|
24
|
+
var uri2path = require('file-uri-to-path');
|
|
25
|
+
|
|
26
|
+
uri2path('file://localhost/c|/WINDOWS/clock.avi');
|
|
27
|
+
// "c:\\WINDOWS\\clock.avi"
|
|
28
|
+
|
|
29
|
+
uri2path('file:///c|/WINDOWS/clock.avi');
|
|
30
|
+
// "c:\\WINDOWS\\clock.avi"
|
|
31
|
+
|
|
32
|
+
uri2path('file://localhost/c:/WINDOWS/clock.avi');
|
|
33
|
+
// "c:\\WINDOWS\\clock.avi"
|
|
34
|
+
|
|
35
|
+
uri2path('file://hostname/path/to/the%20file.txt');
|
|
36
|
+
// "\\\\hostname\\path\\to\\the file.txt"
|
|
37
|
+
|
|
38
|
+
uri2path('file:///c:/path/to/the%20file.txt');
|
|
39
|
+
// "c:\\path\\to\\the file.txt"
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
API
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
### fileUriToPath(String uri) → String
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
License
|
|
51
|
+
-------
|
|
52
|
+
|
|
53
|
+
(The MIT License)
|
|
54
|
+
|
|
55
|
+
Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
|
|
56
|
+
|
|
57
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
58
|
+
a copy of this software and associated documentation files (the
|
|
59
|
+
'Software'), to deal in the Software without restriction, including
|
|
60
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
61
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
62
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
63
|
+
the following conditions:
|
|
64
|
+
|
|
65
|
+
The above copyright notice and this permission notice shall be
|
|
66
|
+
included in all copies or substantial portions of the Software.
|
|
67
|
+
|
|
68
|
+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
|
69
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
70
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
71
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
72
|
+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
73
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
74
|
+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
|
|
2
|
+
/**
|
|
3
|
+
* Module dependencies.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
var sep = require('path').sep || '/';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Module exports.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
module.exports = fileUriToPath;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* File URI to Path function.
|
|
16
|
+
*
|
|
17
|
+
* @param {String} uri
|
|
18
|
+
* @return {String} path
|
|
19
|
+
* @api public
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
function fileUriToPath (uri) {
|
|
23
|
+
if ('string' != typeof uri ||
|
|
24
|
+
uri.length <= 7 ||
|
|
25
|
+
'file://' != uri.substring(0, 7)) {
|
|
26
|
+
throw new TypeError('must pass in a file:// URI to convert to a file path');
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
var rest = decodeURI(uri.substring(7));
|
|
30
|
+
var firstSlash = rest.indexOf('/');
|
|
31
|
+
var host = rest.substring(0, firstSlash);
|
|
32
|
+
var path = rest.substring(firstSlash + 1);
|
|
33
|
+
|
|
34
|
+
// 2. Scheme Definition
|
|
35
|
+
// As a special case, <host> can be the string "localhost" or the empty
|
|
36
|
+
// string; this is interpreted as "the machine from which the URL is
|
|
37
|
+
// being interpreted".
|
|
38
|
+
if ('localhost' == host) host = '';
|
|
39
|
+
|
|
40
|
+
if (host) {
|
|
41
|
+
host = sep + sep + host;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// 3.2 Drives, drive letters, mount points, file system root
|
|
45
|
+
// Drive letters are mapped into the top of a file URI in various ways,
|
|
46
|
+
// depending on the implementation; some applications substitute
|
|
47
|
+
// vertical bar ("|") for the colon after the drive letter, yielding
|
|
48
|
+
// "file:///c|/tmp/test.txt". In some cases, the colon is left
|
|
49
|
+
// unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
|
|
50
|
+
// colon is simply omitted, as in "file:///c/tmp/test.txt".
|
|
51
|
+
path = path.replace(/^(.+)\|/, '$1:');
|
|
52
|
+
|
|
53
|
+
// for Windows, we need to invert the path separators from what a URI uses
|
|
54
|
+
if (sep == '\\') {
|
|
55
|
+
path = path.replace(/\//g, '\\');
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
if (/^.+\:/.test(path)) {
|
|
59
|
+
// has Windows drive at beginning of path
|
|
60
|
+
} else {
|
|
61
|
+
// unix path…
|
|
62
|
+
path = sep + path;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return host + path;
|
|
66
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "file-uri-to-path",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Convert a file: URI to a file path",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"directories": {
|
|
8
|
+
"test": "test"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "mocha --reporter spec"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git://github.com/TooTallNate/file-uri-to-path.git"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"file",
|
|
19
|
+
"uri",
|
|
20
|
+
"convert",
|
|
21
|
+
"path"
|
|
22
|
+
],
|
|
23
|
+
"author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"bugs": {
|
|
26
|
+
"url": "https://github.com/TooTallNate/file-uri-to-path/issues"
|
|
27
|
+
},
|
|
28
|
+
"homepage": "https://github.com/TooTallNate/file-uri-to-path",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"mocha": "3"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
|
|
2
|
+
var sep = require('path').sep || '/';
|
|
3
|
+
var assert = require('assert');
|
|
4
|
+
var uri2path = require('../');
|
|
5
|
+
var tests = require('./tests.json');
|
|
6
|
+
|
|
7
|
+
describe('file-uri-to-path', function () {
|
|
8
|
+
|
|
9
|
+
Object.keys(tests).forEach(function (uri) {
|
|
10
|
+
|
|
11
|
+
// the test cases were generated from Windows' PathCreateFromUrlA() function.
|
|
12
|
+
// On Unix, we have to replace the path separator with the Unix one instead of
|
|
13
|
+
// the Windows one.
|
|
14
|
+
var expected = tests[uri].replace(/\\/g, sep);
|
|
15
|
+
|
|
16
|
+
it('should convert ' + JSON.stringify(uri) + ' to ' + JSON.stringify(expected),
|
|
17
|
+
function () {
|
|
18
|
+
var actual = uri2path(uri);
|
|
19
|
+
assert.equal(actual, expected);
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"file://host/path": "\\\\host\\path",
|
|
3
|
+
"file://localhost/etc/fstab": "\\etc\\fstab",
|
|
4
|
+
"file:///etc/fstab": "\\etc\\fstab",
|
|
5
|
+
"file:///c:/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
|
|
6
|
+
"file://localhost/c|/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
|
|
7
|
+
"file:///c|/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
|
|
8
|
+
"file://localhost/c:/WINDOWS/clock.avi": "c:\\WINDOWS\\clock.avi",
|
|
9
|
+
"file://hostname/path/to/the%20file.txt": "\\\\hostname\\path\\to\\the file.txt",
|
|
10
|
+
"file:///c:/path/to/the%20file.txt": "c:\\path\\to\\the file.txt",
|
|
11
|
+
"file:///C:/Documents%20and%20Settings/davris/FileSchemeURIs.doc": "C:\\Documents and Settings\\davris\\FileSchemeURIs.doc",
|
|
12
|
+
"file:///C:/caf%C3%A9/%C3%A5r/d%C3%BCnn/%E7%89%9B%E9%93%83/Ph%E1%BB%9F/%F0%9F%98%B5.exe": "C:\\café\\år\\dünn\\牛铃\\Phở\\😵.exe"
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v24.6.0
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Coding Rules
|
|
2
|
+
|
|
3
|
+
- Default parameters are forbidden, except in tests.
|
|
4
|
+
- Non-null assertions (`!`) are forbidden. Use `defined()` from `@glideapps/ts-necessities` instead.
|
|
5
|
+
- Framework code must never throw and must never let exceptions from dependencies propagate. All errors must be returned as `neverthrow` `Result` values. Exceptions from dependencies (e.g. SQLite, simulation failpoints) must be caught and converted to `Result` errors. The only exceptions to this rule: workflow functions throw (caught immediately by the engine), and test code may throw.
|