@donkeylabs/server 0.2.9 → 0.2.11
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/cli/commands/generate.ts +4 -4
- package/examples/starter/.@donkeylabs/server/client.ts +18 -0
- package/examples/starter/bun.lock +126 -2
- package/examples/starter/node_modules/@babel/code-frame/LICENSE +22 -0
- package/examples/starter/node_modules/@babel/code-frame/README.md +19 -0
- package/examples/starter/node_modules/@babel/code-frame/lib/index.js +216 -0
- package/examples/starter/node_modules/@babel/code-frame/lib/index.js.map +1 -0
- package/examples/starter/node_modules/@babel/code-frame/package.json +32 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
- package/examples/starter/node_modules/@babel/helper-validator-identifier/package.json +31 -0
- package/examples/starter/node_modules/@types/prompts/LICENSE +21 -0
- package/examples/starter/node_modules/@types/prompts/README.md +15 -0
- package/examples/starter/node_modules/@types/prompts/index.d.ts +123 -0
- package/examples/starter/node_modules/@types/prompts/package.json +58 -0
- package/examples/starter/node_modules/ansi-styles/index.d.ts +345 -0
- package/examples/starter/node_modules/ansi-styles/index.js +163 -0
- package/examples/starter/node_modules/ansi-styles/license +9 -0
- package/examples/starter/node_modules/ansi-styles/package.json +56 -0
- package/examples/starter/node_modules/ansi-styles/readme.md +152 -0
- package/examples/starter/node_modules/argparse/CHANGELOG.md +216 -0
- package/examples/starter/node_modules/argparse/LICENSE +254 -0
- package/examples/starter/node_modules/argparse/README.md +84 -0
- package/examples/starter/node_modules/argparse/argparse.js +3707 -0
- package/examples/starter/node_modules/argparse/lib/sub.js +67 -0
- package/examples/starter/node_modules/argparse/lib/textwrap.js +440 -0
- package/examples/starter/node_modules/argparse/package.json +31 -0
- package/examples/starter/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/examples/starter/node_modules/balanced-match/LICENSE.md +21 -0
- package/examples/starter/node_modules/balanced-match/README.md +97 -0
- package/examples/starter/node_modules/balanced-match/index.js +62 -0
- package/examples/starter/node_modules/balanced-match/package.json +48 -0
- package/examples/starter/node_modules/brace-expansion/LICENSE +21 -0
- package/examples/starter/node_modules/brace-expansion/README.md +129 -0
- package/examples/starter/node_modules/brace-expansion/index.js +201 -0
- package/examples/starter/node_modules/brace-expansion/package.json +50 -0
- package/examples/starter/node_modules/braces/LICENSE +21 -0
- package/examples/starter/node_modules/braces/README.md +586 -0
- package/examples/starter/node_modules/braces/index.js +170 -0
- package/examples/starter/node_modules/braces/lib/compile.js +60 -0
- package/examples/starter/node_modules/braces/lib/constants.js +57 -0
- package/examples/starter/node_modules/braces/lib/expand.js +113 -0
- package/examples/starter/node_modules/braces/lib/parse.js +331 -0
- package/examples/starter/node_modules/braces/lib/stringify.js +32 -0
- package/examples/starter/node_modules/braces/lib/utils.js +122 -0
- package/examples/starter/node_modules/braces/package.json +77 -0
- package/examples/starter/node_modules/callsites/index.d.ts +96 -0
- package/examples/starter/node_modules/callsites/index.js +13 -0
- package/examples/starter/node_modules/callsites/license +9 -0
- package/examples/starter/node_modules/callsites/package.json +39 -0
- package/examples/starter/node_modules/callsites/readme.md +48 -0
- package/examples/starter/node_modules/chalk/index.d.ts +415 -0
- package/examples/starter/node_modules/chalk/license +9 -0
- package/examples/starter/node_modules/chalk/package.json +68 -0
- package/examples/starter/node_modules/chalk/readme.md +341 -0
- package/examples/starter/node_modules/chalk/source/index.js +229 -0
- package/examples/starter/node_modules/chalk/source/templates.js +134 -0
- package/examples/starter/node_modules/chalk/source/util.js +39 -0
- package/examples/starter/node_modules/color-convert/CHANGELOG.md +54 -0
- package/examples/starter/node_modules/color-convert/LICENSE +21 -0
- package/examples/starter/node_modules/color-convert/README.md +68 -0
- package/examples/starter/node_modules/color-convert/conversions.js +839 -0
- package/examples/starter/node_modules/color-convert/index.js +81 -0
- package/examples/starter/node_modules/color-convert/package.json +48 -0
- package/examples/starter/node_modules/color-convert/route.js +97 -0
- package/examples/starter/node_modules/color-name/LICENSE +8 -0
- package/examples/starter/node_modules/color-name/README.md +11 -0
- package/examples/starter/node_modules/color-name/index.js +152 -0
- package/examples/starter/node_modules/color-name/package.json +28 -0
- package/examples/starter/node_modules/concat-map/.travis.yml +4 -0
- package/examples/starter/node_modules/concat-map/LICENSE +18 -0
- package/examples/starter/node_modules/concat-map/README.markdown +62 -0
- package/examples/starter/node_modules/concat-map/example/map.js +6 -0
- package/examples/starter/node_modules/concat-map/index.js +13 -0
- package/examples/starter/node_modules/concat-map/package.json +43 -0
- package/examples/starter/node_modules/concat-map/test/map.js +39 -0
- package/examples/starter/node_modules/cosmiconfig/LICENSE +22 -0
- package/examples/starter/node_modules/cosmiconfig/README.md +782 -0
- package/examples/starter/node_modules/cosmiconfig/dist/Explorer.d.ts +2 -0
- package/examples/starter/node_modules/cosmiconfig/dist/Explorer.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/Explorer.js +170 -0
- package/examples/starter/node_modules/cosmiconfig/dist/Explorer.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.d.ts +2 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.js +126 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.d.ts +2 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.js +184 -0
- package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.d.ts +5 -0
- package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.js +32 -0
- package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts +3 -0
- package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.js +23 -0
- package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/defaults.d.ts +25 -0
- package/examples/starter/node_modules/cosmiconfig/dist/defaults.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/defaults.js +105 -0
- package/examples/starter/node_modules/cosmiconfig/dist/defaults.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.d.ts +4 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.js +38 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts +5 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.js +28 -0
- package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/index.d.ts +6 -0
- package/examples/starter/node_modules/cosmiconfig/dist/index.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/index.js +148 -0
- package/examples/starter/node_modules/cosmiconfig/dist/index.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/loaders.d.ts +8 -0
- package/examples/starter/node_modules/cosmiconfig/dist/loaders.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/loaders.js +148 -0
- package/examples/starter/node_modules/cosmiconfig/dist/loaders.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/merge.d.ts +9 -0
- package/examples/starter/node_modules/cosmiconfig/dist/merge.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/merge.js +40 -0
- package/examples/starter/node_modules/cosmiconfig/dist/merge.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/readFile.d.ts +7 -0
- package/examples/starter/node_modules/cosmiconfig/dist/readFile.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/readFile.js +56 -0
- package/examples/starter/node_modules/cosmiconfig/dist/readFile.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/types.d.ts +98 -0
- package/examples/starter/node_modules/cosmiconfig/dist/types.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/types.js +3 -0
- package/examples/starter/node_modules/cosmiconfig/dist/types.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/util.d.ts +2 -0
- package/examples/starter/node_modules/cosmiconfig/dist/util.d.ts.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/dist/util.js +99 -0
- package/examples/starter/node_modules/cosmiconfig/dist/util.js.map +1 -0
- package/examples/starter/node_modules/cosmiconfig/package.json +102 -0
- package/examples/starter/node_modules/diff/CONTRIBUTING.md +39 -0
- package/examples/starter/node_modules/diff/LICENSE +31 -0
- package/examples/starter/node_modules/diff/README.md +211 -0
- package/examples/starter/node_modules/diff/dist/diff.js +1843 -0
- package/examples/starter/node_modules/diff/dist/diff.min.js +416 -0
- package/examples/starter/node_modules/diff/lib/convert/dmp.js +24 -0
- package/examples/starter/node_modules/diff/lib/convert/xml.js +35 -0
- package/examples/starter/node_modules/diff/lib/diff/array.js +24 -0
- package/examples/starter/node_modules/diff/lib/diff/base.js +235 -0
- package/examples/starter/node_modules/diff/lib/diff/character.js +17 -0
- package/examples/starter/node_modules/diff/lib/diff/css.js +21 -0
- package/examples/starter/node_modules/diff/lib/diff/json.js +108 -0
- package/examples/starter/node_modules/diff/lib/diff/line.js +50 -0
- package/examples/starter/node_modules/diff/lib/diff/sentence.js +21 -0
- package/examples/starter/node_modules/diff/lib/diff/word.js +70 -0
- package/examples/starter/node_modules/diff/lib/index.js +74 -0
- package/examples/starter/node_modules/diff/lib/patch/apply.js +180 -0
- package/examples/starter/node_modules/diff/lib/patch/create.js +148 -0
- package/examples/starter/node_modules/diff/lib/patch/merge.js +396 -0
- package/examples/starter/node_modules/diff/lib/patch/parse.js +147 -0
- package/examples/starter/node_modules/diff/lib/util/array.js +27 -0
- package/examples/starter/node_modules/diff/lib/util/distance-iterator.js +47 -0
- package/examples/starter/node_modules/diff/lib/util/params.js +18 -0
- package/examples/starter/node_modules/diff/package.json +67 -0
- package/examples/starter/node_modules/diff/release-notes.md +247 -0
- package/examples/starter/node_modules/diff/runtime.js +3 -0
- package/examples/starter/node_modules/diff/yarn.lock +5729 -0
- package/examples/starter/node_modules/dotenv/CHANGELOG.md +598 -0
- package/examples/starter/node_modules/dotenv/LICENSE +23 -0
- package/examples/starter/node_modules/dotenv/README-es.md +405 -0
- package/examples/starter/node_modules/dotenv/README.md +692 -0
- package/examples/starter/node_modules/dotenv/SECURITY.md +1 -0
- package/examples/starter/node_modules/dotenv/config.d.ts +1 -0
- package/examples/starter/node_modules/dotenv/config.js +9 -0
- package/examples/starter/node_modules/dotenv/lib/cli-options.js +17 -0
- package/examples/starter/node_modules/dotenv/lib/env-options.js +28 -0
- package/examples/starter/node_modules/dotenv/lib/main.d.ts +179 -0
- package/examples/starter/node_modules/dotenv/lib/main.js +434 -0
- package/examples/starter/node_modules/dotenv/package.json +62 -0
- package/examples/starter/node_modules/dotenv-expand/CHANGELOG.md +177 -0
- package/examples/starter/node_modules/dotenv-expand/LICENSE +24 -0
- package/examples/starter/node_modules/dotenv-expand/README.md +174 -0
- package/examples/starter/node_modules/dotenv-expand/config.d.ts +1 -0
- package/examples/starter/node_modules/dotenv-expand/config.js +13 -0
- package/examples/starter/node_modules/dotenv-expand/lib/main.d.ts +50 -0
- package/examples/starter/node_modules/dotenv-expand/lib/main.js +98 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/CHANGELOG.md +520 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/LICENSE +23 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/README-es.md +411 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/README.md +645 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/SECURITY.md +1 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/config.d.ts +1 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/config.js +9 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/cli-options.js +17 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/env-options.js +28 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/main.d.ts +162 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/main.js +386 -0
- package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/package.json +62 -0
- package/examples/starter/node_modules/dotenv-expand/package.json +56 -0
- package/examples/starter/node_modules/env-paths/index.d.ts +101 -0
- package/examples/starter/node_modules/env-paths/index.js +74 -0
- package/examples/starter/node_modules/env-paths/license +9 -0
- package/examples/starter/node_modules/env-paths/package.json +45 -0
- package/examples/starter/node_modules/env-paths/readme.md +115 -0
- package/examples/starter/node_modules/error-ex/LICENSE +21 -0
- package/examples/starter/node_modules/error-ex/README.md +144 -0
- package/examples/starter/node_modules/error-ex/index.js +141 -0
- package/examples/starter/node_modules/error-ex/package.json +46 -0
- package/examples/starter/node_modules/escape-string-regexp/index.js +11 -0
- package/examples/starter/node_modules/escape-string-regexp/license +21 -0
- package/examples/starter/node_modules/escape-string-regexp/package.json +41 -0
- package/examples/starter/node_modules/escape-string-regexp/readme.md +27 -0
- package/examples/starter/node_modules/fill-range/LICENSE +21 -0
- package/examples/starter/node_modules/fill-range/README.md +237 -0
- package/examples/starter/node_modules/fill-range/index.js +248 -0
- package/examples/starter/node_modules/fill-range/package.json +74 -0
- package/examples/starter/node_modules/fs.realpath/LICENSE +43 -0
- package/examples/starter/node_modules/fs.realpath/README.md +33 -0
- package/examples/starter/node_modules/fs.realpath/index.js +66 -0
- package/examples/starter/node_modules/fs.realpath/old.js +303 -0
- package/examples/starter/node_modules/fs.realpath/package.json +26 -0
- package/examples/starter/node_modules/git-diff/.editorconfig +10 -0
- package/examples/starter/node_modules/git-diff/.eslintrc.json +42 -0
- package/examples/starter/node_modules/git-diff/.travis.yml +9 -0
- package/examples/starter/node_modules/git-diff/LICENSE.md +24 -0
- package/examples/starter/node_modules/git-diff/README.md +218 -0
- package/examples/starter/node_modules/git-diff/appveyor.yml +17 -0
- package/examples/starter/node_modules/git-diff/async.js +14 -0
- package/examples/starter/node_modules/git-diff/config.js +8 -0
- package/examples/starter/node_modules/git-diff/diffs.png +0 -0
- package/examples/starter/node_modules/git-diff/js/_shared/defaultOptions.js +10 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/color.js +14 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/index.js +10 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/index.spec.js +74 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/lineDiffFake/index.js +56 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/mostCommonLineEnding.js +21 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffFake/wordDiffFake/index.js +44 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/bugFixes.spec.js +25 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/generateDiff/index.js +105 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/generateDiffNoRepo/index.js +27 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/index.js +16 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/index.spec.js +222 -0
- package/examples/starter/node_modules/git-diff/js/gitDiffReal/keepIt.js +40 -0
- package/examples/starter/node_modules/git-diff/js/normaliseOptions/index.js +63 -0
- package/examples/starter/node_modules/git-diff/js/normaliseOptions/index.spec.js +93 -0
- package/examples/starter/node_modules/git-diff/js/validate/index.js +11 -0
- package/examples/starter/node_modules/git-diff/js/validate/index.spec.js +30 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/index.js +228 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/index.js.flow +93 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/license +9 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/index.js +165 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/license +9 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/CHANGELOG.md +54 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/LICENSE +21 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/README.md +68 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/conversions.js +868 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/index.js +78 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/.eslintrc.json +43 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/LICENSE +8 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/README.md +11 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/index.js +152 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/package.json +25 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/test.js +7 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/package.json +46 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/route.js +97 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/package.json +56 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/readme.md +147 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/browser.js +5 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/index.js +131 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/license +9 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/index.js +8 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/license +9 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/package.json +44 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/readme.md +70 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/package.json +53 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/readme.md +66 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/package.json +71 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/readme.md +314 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/templates.js +128 -0
- package/examples/starter/node_modules/git-diff/node_modules/chalk/types/index.d.ts +97 -0
- package/examples/starter/node_modules/git-diff/package.json +75 -0
- package/examples/starter/node_modules/git-diff/server.bootstrap.js +4 -0
- package/examples/starter/node_modules/git-diff/sync.js +24 -0
- package/examples/starter/node_modules/git-diff/test/_js/testImports.js +31 -0
- package/examples/starter/node_modules/git-diff/test/data/index.js +29 -0
- package/examples/starter/node_modules/git-diff/test/data/lineDiffVim.txt +13 -0
- package/examples/starter/node_modules/git-diff/test/data/shortstatReal.txt +1 -0
- package/examples/starter/node_modules/git-diff/test/data/str1.txt +9 -0
- package/examples/starter/node_modules/git-diff/test/data/str2.txt +9 -0
- package/examples/starter/node_modules/git-diff/test/data/wordDiffFake.txt +10 -0
- package/examples/starter/node_modules/git-diff/test/data/wordDiffReal.txt +10 -0
- package/examples/starter/node_modules/git-diff/test/examples/examples.spec.js +105 -0
- package/examples/starter/node_modules/git-diff/test/examples/newStr.txt +9 -0
- package/examples/starter/node_modules/git-diff/test/examples/oldStr.txt +9 -0
- package/examples/starter/node_modules/git-diff/test/gitDiffAsync/gitDiffAsync.spec.js +50 -0
- package/examples/starter/node_modules/git-diff/test/gitDiffSync/fake.spec.js +126 -0
- package/examples/starter/node_modules/git-diff/test/gitDiffSync/misc.spec.js +62 -0
- package/examples/starter/node_modules/git-diff/test/gitDiffSync/real.spec.js +206 -0
- package/examples/starter/node_modules/git-diff/test/mocha.opts +8 -0
- package/examples/starter/node_modules/git-diff/test/test.bootstrap.js +1 -0
- package/examples/starter/node_modules/git-diff/top.png +0 -0
- package/examples/starter/node_modules/git-diff/yarn.lock +1829 -0
- package/examples/starter/node_modules/glob/LICENSE +21 -0
- package/examples/starter/node_modules/glob/README.md +378 -0
- package/examples/starter/node_modules/glob/common.js +238 -0
- package/examples/starter/node_modules/glob/glob.js +790 -0
- package/examples/starter/node_modules/glob/package.json +55 -0
- package/examples/starter/node_modules/glob/sync.js +486 -0
- package/examples/starter/node_modules/has-flag/index.d.ts +39 -0
- package/examples/starter/node_modules/has-flag/index.js +8 -0
- package/examples/starter/node_modules/has-flag/license +9 -0
- package/examples/starter/node_modules/has-flag/package.json +46 -0
- package/examples/starter/node_modules/has-flag/readme.md +89 -0
- package/examples/starter/node_modules/import-fresh/index.d.ts +30 -0
- package/examples/starter/node_modules/import-fresh/index.js +34 -0
- package/examples/starter/node_modules/import-fresh/license +9 -0
- package/examples/starter/node_modules/import-fresh/package.json +48 -0
- package/examples/starter/node_modules/import-fresh/readme.md +54 -0
- package/examples/starter/node_modules/inflight/LICENSE +15 -0
- package/examples/starter/node_modules/inflight/README.md +37 -0
- package/examples/starter/node_modules/inflight/inflight.js +54 -0
- package/examples/starter/node_modules/inflight/package.json +29 -0
- package/examples/starter/node_modules/interpret/CHANGELOG +115 -0
- package/examples/starter/node_modules/interpret/LICENSE +22 -0
- package/examples/starter/node_modules/interpret/README.md +187 -0
- package/examples/starter/node_modules/interpret/index.js +168 -0
- package/examples/starter/node_modules/interpret/mjs-stub.js +1 -0
- package/examples/starter/node_modules/interpret/package.json +75 -0
- package/examples/starter/node_modules/is-arrayish/.editorconfig +18 -0
- package/examples/starter/node_modules/is-arrayish/.istanbul.yml +4 -0
- package/examples/starter/node_modules/is-arrayish/.travis.yml +17 -0
- package/examples/starter/node_modules/is-arrayish/LICENSE +21 -0
- package/examples/starter/node_modules/is-arrayish/README.md +16 -0
- package/examples/starter/node_modules/is-arrayish/index.js +10 -0
- package/examples/starter/node_modules/is-arrayish/package.json +34 -0
- package/examples/starter/node_modules/is-core-module/.eslintrc +18 -0
- package/examples/starter/node_modules/is-core-module/.nycrc +9 -0
- package/examples/starter/node_modules/is-core-module/CHANGELOG.md +218 -0
- package/examples/starter/node_modules/is-core-module/LICENSE +20 -0
- package/examples/starter/node_modules/is-core-module/README.md +40 -0
- package/examples/starter/node_modules/is-core-module/core.json +162 -0
- package/examples/starter/node_modules/is-core-module/index.js +69 -0
- package/examples/starter/node_modules/is-core-module/package.json +76 -0
- package/examples/starter/node_modules/is-core-module/test/index.js +157 -0
- package/examples/starter/node_modules/is-number/LICENSE +21 -0
- package/examples/starter/node_modules/is-number/README.md +187 -0
- package/examples/starter/node_modules/is-number/index.js +18 -0
- package/examples/starter/node_modules/is-number/package.json +82 -0
- package/examples/starter/node_modules/js-tokens/CHANGELOG.md +151 -0
- package/examples/starter/node_modules/js-tokens/LICENSE +21 -0
- package/examples/starter/node_modules/js-tokens/README.md +240 -0
- package/examples/starter/node_modules/js-tokens/index.js +23 -0
- package/examples/starter/node_modules/js-tokens/package.json +30 -0
- package/examples/starter/node_modules/js-yaml/LICENSE +21 -0
- package/examples/starter/node_modules/js-yaml/README.md +247 -0
- package/examples/starter/node_modules/js-yaml/bin/js-yaml.js +126 -0
- package/examples/starter/node_modules/js-yaml/dist/js-yaml.js +3880 -0
- package/examples/starter/node_modules/js-yaml/dist/js-yaml.min.js +2 -0
- package/examples/starter/node_modules/js-yaml/dist/js-yaml.mjs +3856 -0
- package/examples/starter/node_modules/js-yaml/index.js +47 -0
- package/examples/starter/node_modules/js-yaml/lib/common.js +59 -0
- package/examples/starter/node_modules/js-yaml/lib/dumper.js +965 -0
- package/examples/starter/node_modules/js-yaml/lib/exception.js +55 -0
- package/examples/starter/node_modules/js-yaml/lib/loader.js +1733 -0
- package/examples/starter/node_modules/js-yaml/lib/schema/core.js +11 -0
- package/examples/starter/node_modules/js-yaml/lib/schema/default.js +22 -0
- package/examples/starter/node_modules/js-yaml/lib/schema/failsafe.js +17 -0
- package/examples/starter/node_modules/js-yaml/lib/schema/json.js +19 -0
- package/examples/starter/node_modules/js-yaml/lib/schema.js +121 -0
- package/examples/starter/node_modules/js-yaml/lib/snippet.js +101 -0
- package/examples/starter/node_modules/js-yaml/lib/type/binary.js +125 -0
- package/examples/starter/node_modules/js-yaml/lib/type/bool.js +35 -0
- package/examples/starter/node_modules/js-yaml/lib/type/float.js +97 -0
- package/examples/starter/node_modules/js-yaml/lib/type/int.js +156 -0
- package/examples/starter/node_modules/js-yaml/lib/type/map.js +8 -0
- package/examples/starter/node_modules/js-yaml/lib/type/merge.js +12 -0
- package/examples/starter/node_modules/js-yaml/lib/type/null.js +35 -0
- package/examples/starter/node_modules/js-yaml/lib/type/omap.js +44 -0
- package/examples/starter/node_modules/js-yaml/lib/type/pairs.js +53 -0
- package/examples/starter/node_modules/js-yaml/lib/type/seq.js +8 -0
- package/examples/starter/node_modules/js-yaml/lib/type/set.js +29 -0
- package/examples/starter/node_modules/js-yaml/lib/type/str.js +8 -0
- package/examples/starter/node_modules/js-yaml/lib/type/timestamp.js +88 -0
- package/examples/starter/node_modules/js-yaml/lib/type.js +66 -0
- package/examples/starter/node_modules/js-yaml/package.json +66 -0
- package/examples/starter/node_modules/json-parse-even-better-errors/CHANGELOG.md +50 -0
- package/examples/starter/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/examples/starter/node_modules/json-parse-even-better-errors/README.md +96 -0
- package/examples/starter/node_modules/json-parse-even-better-errors/index.js +121 -0
- package/examples/starter/node_modules/json-parse-even-better-errors/package.json +33 -0
- package/examples/starter/node_modules/kysely-codegen/.cspell.json +97 -0
- package/examples/starter/node_modules/kysely-codegen/.github/FUNDING.yml +1 -0
- package/examples/starter/node_modules/kysely-codegen/.kysely-codegenrc.json +3 -0
- package/examples/starter/node_modules/kysely-codegen/.ncurc.json +3 -0
- package/examples/starter/node_modules/kysely-codegen/.prettierignore +1 -0
- package/examples/starter/node_modules/kysely-codegen/LICENSE +18 -0
- package/examples/starter/node_modules/kysely-codegen/README.md +456 -0
- package/examples/starter/node_modules/kysely-codegen/assets/kysely-codegen-logo.svg +28 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.d.ts +2 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.js +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.d.ts +17 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.js +246 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config.d.ts +106 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config.js +87 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/config.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.js +23 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.d.ts +76 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.js +152 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/index.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/index.js +21 -0
- package/examples/starter/node_modules/kysely-codegen/dist/cli/index.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/db.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/db.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/db.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.d.ts +16 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.js +18 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.d.ts +9 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.d.ts +10 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.d.ts +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.d.ts +9 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.js +14 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.d.ts +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.js +18 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.d.ts +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.d.ts +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.js +28 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.js +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.js +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.d.ts +24 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.js +94 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.js +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.d.ts +11 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.js +38 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.js +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.js +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.d.ts +36 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.js +45 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.d.ts +58 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.js +80 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.d.ts +72 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.js +137 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.d.ts +16 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.js +22 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.d.ts +14 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.js +22 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.js +27 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.d.ts +34 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.js +84 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.d.ts +68 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.js +311 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.js +32 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/index.d.ts +50 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/index.js +67 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/index.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.js +14 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.d.ts +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.js +62 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.d.ts +18 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.js +44 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.js +9 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.d.ts +44 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.js +59 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.d.ts +38 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.js +380 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.d.ts +30 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.js +67 -0
- package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/index.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/dist/index.js +21 -0
- package/examples/starter/node_modules/kysely-codegen/dist/index.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.d.ts +19 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.js +10 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js +56 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.js +59 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.d.ts +9 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.js +112 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.js +55 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.d.ts +14 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.js +46 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.js +66 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.d.ts +2 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.js +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.d.ts +2 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.js +5 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.d.ts +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.d.ts +20 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.js +83 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.d.ts +35 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.js +128 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.js +53 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.d.ts +10 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.js +26 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.d.ts +24 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.js +41 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.d.ts +23 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.js +128 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.js +50 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.d.ts +23 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.js +18 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.d.ts +12 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.js +13 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.d.ts +17 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.js +16 -0
- package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.js.map +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/LICENSE +21 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/README.md +208 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.cjs +33 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.d.cts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.js +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.cjs +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.cjs +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/package.json +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/index.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/locales/index.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/mini/index.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/errors.ts +13 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/external.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/index.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/function.test.ts +261 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/types.ts +5138 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/checks.ts +32 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/compat.ts +70 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/errors.ts +82 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/external.ts +51 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/from-json-schema.ts +643 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/parse.ts +82 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/schemas.ts +2409 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/catch.test.ts +276 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/default.test.ts +365 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +661 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +595 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +734 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/number.test.ts +270 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/object.test.ts +640 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/optional.test.ts +223 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/partial.test.ts +427 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +282 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/record.test.ts +600 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +582 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/refine.test.ts +570 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/string.test.ts +1175 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2975 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/transform.test.ts +361 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/tuple.test.ts +183 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/union.test.ts +219 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/api.ts +1798 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/checks.ts +1293 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/config.ts +15 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/core.ts +138 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/errors.ts +448 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/index.ts +16 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema-processors.ts +667 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema.ts +147 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/parse.ts +195 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/regexes.ts +183 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/registries.ts +105 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/schemas.ts +4543 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +83 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +67 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/to-json-schema.ts +613 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/util.ts +966 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/index.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ar.ts +115 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/az.ts +111 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/be.ts +176 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/bg.ts +128 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ca.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/cs.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/da.ts +123 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/de.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/en.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/eo.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/es.ts +141 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fa.ts +126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fi.ts +121 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fr.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/he.ts +246 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/hu.ts +117 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/hy.ts +164 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/id.ts +115 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/index.ts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/is.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/it.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ja.ts +114 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ka.ts +123 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/kh.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/km.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ko.ts +121 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/lt.ts +239 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/mk.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ms.ts +115 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/nl.ts +121 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/no.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ota.ts +117 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/pl.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ps.ts +126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/pt.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ru.ts +176 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/sl.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/sv.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ta.ts +118 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/th.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/tr.ts +111 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ua.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/uk.ts +117 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ur.ts +119 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/uz.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/vi.ts +117 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/yo.ts +124 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/coerce.ts +27 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/iso.ts +66 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/parse.ts +14 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/schemas.ts +1916 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/codec.test.ts +529 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/index.test.ts +963 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/string.test.ts +347 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.cjs +138 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.js +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.cjs +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.js +9 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.cjs +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.d.cts +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.d.ts +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.js +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.js +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.cjs +33 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.d.cts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.js +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.cjs +112 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.cjs +3777 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.d.cts +1034 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.d.ts +1034 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.js +3695 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.cjs +33 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.js +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.cjs +61 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.d.cts +50 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.d.ts +50 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.js +31 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.cjs +74 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.js +48 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.cjs +73 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.d.cts +15 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.d.ts +15 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.js +20 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.cjs +610 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.js +584 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.cjs +33 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.js +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.js +30 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.cjs +41 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.d.cts +31 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.d.ts +31 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.js +15 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.cjs +1272 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.d.cts +739 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.d.ts +739 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.js +1157 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.cjs +1222 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.d.cts +304 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.d.ts +304 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.js +1082 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.cjs +601 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.js +575 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.cjs +83 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.d.cts +70 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.d.ts +70 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.js +76 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.cjs +39 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.js +35 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.cjs +213 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.d.cts +220 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.d.ts +220 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.js +182 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.cjs +47 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.d.cts +16 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.d.ts +16 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.js +16 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.js +95 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.cjs +648 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.js +605 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.d.cts +88 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.d.ts +88 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.cjs +131 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.d.cts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.d.ts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.js +93 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.cjs +166 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.d.cts +79 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.d.ts +79 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.js +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.cjs +56 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.js +51 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.cjs +2126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.d.cts +1146 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.d.ts +1146 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.js +2095 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.cjs +446 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.js +437 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.cjs +710 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.d.cts +199 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.d.ts +199 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.js +651 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.cjs +8 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.js +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.cjs +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.d.cts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.cjs +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.js +106 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.cjs +132 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.js +105 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.cjs +183 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.js +156 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.cjs +147 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.js +120 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.cjs +138 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.js +111 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.cjs +142 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.js +115 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.cjs +159 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.js +132 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.cjs +141 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.js +114 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.cjs +139 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.js +112 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.cjs +241 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.js +214 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.cjs +174 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.js +147 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.cjs +133 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.js +106 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.cjs +104 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.d.cts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.d.ts +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.js +49 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.cjs +139 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.js +112 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.cjs +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.js +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.cjs +138 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.js +111 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.cjs +230 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.js +203 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.cjs +141 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.js +114 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.cjs +183 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.js +156 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.cjs +132 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.js +105 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.cjs +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.d.ts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.js +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.cjs +137 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.js +110 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.cjs +135 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.js +108 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.js +109 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.js +107 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.cjs +52 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.js +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.cjs +63 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.d.cts +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.d.ts +12 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.js +14 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.cjs +32 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.js +3 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.cjs +64 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.js +34 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.cjs +16 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.cjs +1046 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.d.cts +427 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.d.ts +427 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.js +925 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.cjs +17 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.js +1 -0
- package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/package.json +6 -0
- package/examples/starter/node_modules/kysely-codegen/package.json +214 -0
- package/examples/starter/node_modules/kysely-codegen/pnpm-workspace.yaml +3 -0
- package/examples/starter/node_modules/kysely-codegen/tsconfig.build.json +5 -0
- package/examples/starter/node_modules/lines-and-columns/LICENSE +21 -0
- package/examples/starter/node_modules/lines-and-columns/README.md +33 -0
- package/examples/starter/node_modules/lines-and-columns/build/index.d.ts +13 -0
- package/examples/starter/node_modules/lines-and-columns/build/index.js +62 -0
- package/examples/starter/node_modules/lines-and-columns/package.json +49 -0
- package/examples/starter/node_modules/loglevel/.editorconfig +27 -0
- package/examples/starter/node_modules/loglevel/CONTRIBUTING.md +98 -0
- package/examples/starter/node_modules/loglevel/Gruntfile.js +165 -0
- package/examples/starter/node_modules/loglevel/LICENSE-MIT +22 -0
- package/examples/starter/node_modules/loglevel/README.md +408 -0
- package/examples/starter/node_modules/loglevel/_config.yml +1 -0
- package/examples/starter/node_modules/loglevel/bower.json +11 -0
- package/examples/starter/node_modules/loglevel/demo/index.html +139 -0
- package/examples/starter/node_modules/loglevel/demo/script.js +86 -0
- package/examples/starter/node_modules/loglevel/demo/styles.css +107 -0
- package/examples/starter/node_modules/loglevel/dist/loglevel.js +352 -0
- package/examples/starter/node_modules/loglevel/dist/loglevel.min.js +3 -0
- package/examples/starter/node_modules/loglevel/index.d.ts +203 -0
- package/examples/starter/node_modules/loglevel/lib/loglevel.js +357 -0
- package/examples/starter/node_modules/loglevel/package.json +63 -0
- package/examples/starter/node_modules/micromatch/LICENSE +21 -0
- package/examples/starter/node_modules/micromatch/README.md +1024 -0
- package/examples/starter/node_modules/micromatch/index.js +474 -0
- package/examples/starter/node_modules/micromatch/package.json +119 -0
- package/examples/starter/node_modules/minimatch/LICENSE +15 -0
- package/examples/starter/node_modules/minimatch/README.md +230 -0
- package/examples/starter/node_modules/minimatch/minimatch.js +947 -0
- package/examples/starter/node_modules/minimatch/package.json +33 -0
- package/examples/starter/node_modules/minimist/.eslintrc +29 -0
- package/examples/starter/node_modules/minimist/.github/FUNDING.yml +12 -0
- package/examples/starter/node_modules/minimist/.nycrc +14 -0
- package/examples/starter/node_modules/minimist/CHANGELOG.md +298 -0
- package/examples/starter/node_modules/minimist/LICENSE +18 -0
- package/examples/starter/node_modules/minimist/README.md +121 -0
- package/examples/starter/node_modules/minimist/example/parse.js +4 -0
- package/examples/starter/node_modules/minimist/index.js +263 -0
- package/examples/starter/node_modules/minimist/package.json +75 -0
- package/examples/starter/node_modules/minimist/test/all_bool.js +34 -0
- package/examples/starter/node_modules/minimist/test/bool.js +177 -0
- package/examples/starter/node_modules/minimist/test/dash.js +43 -0
- package/examples/starter/node_modules/minimist/test/default_bool.js +37 -0
- package/examples/starter/node_modules/minimist/test/dotted.js +24 -0
- package/examples/starter/node_modules/minimist/test/kv_short.js +32 -0
- package/examples/starter/node_modules/minimist/test/long.js +33 -0
- package/examples/starter/node_modules/minimist/test/num.js +38 -0
- package/examples/starter/node_modules/minimist/test/parse.js +209 -0
- package/examples/starter/node_modules/minimist/test/parse_modified.js +11 -0
- package/examples/starter/node_modules/minimist/test/proto.js +64 -0
- package/examples/starter/node_modules/minimist/test/short.js +69 -0
- package/examples/starter/node_modules/minimist/test/stop_early.js +17 -0
- package/examples/starter/node_modules/minimist/test/unknown.js +104 -0
- package/examples/starter/node_modules/minimist/test/whitespace.js +10 -0
- package/examples/starter/node_modules/parent-module/index.js +37 -0
- package/examples/starter/node_modules/parent-module/license +9 -0
- package/examples/starter/node_modules/parent-module/package.json +46 -0
- package/examples/starter/node_modules/parent-module/readme.md +67 -0
- package/examples/starter/node_modules/parse-json/index.js +54 -0
- package/examples/starter/node_modules/parse-json/license +9 -0
- package/examples/starter/node_modules/parse-json/package.json +45 -0
- package/examples/starter/node_modules/parse-json/readme.md +119 -0
- package/examples/starter/node_modules/path-is-absolute/index.js +20 -0
- package/examples/starter/node_modules/path-is-absolute/license +21 -0
- package/examples/starter/node_modules/path-is-absolute/package.json +43 -0
- package/examples/starter/node_modules/path-is-absolute/readme.md +59 -0
- package/examples/starter/node_modules/path-parse/LICENSE +21 -0
- package/examples/starter/node_modules/path-parse/README.md +42 -0
- package/examples/starter/node_modules/path-parse/index.js +75 -0
- package/examples/starter/node_modules/path-parse/package.json +33 -0
- package/examples/starter/node_modules/picomatch/CHANGELOG.md +136 -0
- package/examples/starter/node_modules/picomatch/LICENSE +21 -0
- package/examples/starter/node_modules/picomatch/README.md +708 -0
- package/examples/starter/node_modules/picomatch/index.js +3 -0
- package/examples/starter/node_modules/picomatch/lib/constants.js +179 -0
- package/examples/starter/node_modules/picomatch/lib/parse.js +1091 -0
- package/examples/starter/node_modules/picomatch/lib/picomatch.js +342 -0
- package/examples/starter/node_modules/picomatch/lib/scan.js +391 -0
- package/examples/starter/node_modules/picomatch/lib/utils.js +64 -0
- package/examples/starter/node_modules/picomatch/package.json +81 -0
- package/examples/starter/node_modules/pluralize/LICENSE +21 -0
- package/examples/starter/node_modules/pluralize/Readme.md +100 -0
- package/examples/starter/node_modules/pluralize/package.json +40 -0
- package/examples/starter/node_modules/pluralize/pluralize.js +503 -0
- package/examples/starter/node_modules/rechoir/.travis.yml +24 -0
- package/examples/starter/node_modules/rechoir/CHANGELOG +38 -0
- package/examples/starter/node_modules/rechoir/LICENSE +22 -0
- package/examples/starter/node_modules/rechoir/README.md +42 -0
- package/examples/starter/node_modules/rechoir/index.js +59 -0
- package/examples/starter/node_modules/rechoir/lib/extension.js +11 -0
- package/examples/starter/node_modules/rechoir/lib/normalize.js +15 -0
- package/examples/starter/node_modules/rechoir/lib/register.js +15 -0
- package/examples/starter/node_modules/rechoir/package.json +88 -0
- package/examples/starter/node_modules/resolve/.editorconfig +37 -0
- package/examples/starter/node_modules/resolve/.eslintrc +65 -0
- package/examples/starter/node_modules/resolve/.github/FUNDING.yml +12 -0
- package/examples/starter/node_modules/resolve/.github/INCIDENT_RESPONSE_PROCESS.md +119 -0
- package/examples/starter/node_modules/resolve/.github/THREAT_MODEL.md +74 -0
- package/examples/starter/node_modules/resolve/LICENSE +21 -0
- package/examples/starter/node_modules/resolve/SECURITY.md +11 -0
- package/examples/starter/node_modules/resolve/async.js +3 -0
- package/examples/starter/node_modules/resolve/bin/resolve +50 -0
- package/examples/starter/node_modules/resolve/example/async.js +5 -0
- package/examples/starter/node_modules/resolve/example/sync.js +3 -0
- package/examples/starter/node_modules/resolve/index.js +6 -0
- package/examples/starter/node_modules/resolve/lib/async.js +333 -0
- package/examples/starter/node_modules/resolve/lib/caller.js +8 -0
- package/examples/starter/node_modules/resolve/lib/core.js +12 -0
- package/examples/starter/node_modules/resolve/lib/core.json +162 -0
- package/examples/starter/node_modules/resolve/lib/homedir.js +24 -0
- package/examples/starter/node_modules/resolve/lib/is-core.js +5 -0
- package/examples/starter/node_modules/resolve/lib/node-modules-paths.js +45 -0
- package/examples/starter/node_modules/resolve/lib/normalize-options.js +10 -0
- package/examples/starter/node_modules/resolve/lib/sync.js +212 -0
- package/examples/starter/node_modules/resolve/package.json +75 -0
- package/examples/starter/node_modules/resolve/readme.markdown +301 -0
- package/examples/starter/node_modules/resolve/sync.js +3 -0
- package/examples/starter/node_modules/resolve/test/core.js +88 -0
- package/examples/starter/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/examples/starter/node_modules/resolve/test/dotdot/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/dotdot.js +29 -0
- package/examples/starter/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/examples/starter/node_modules/resolve/test/filter.js +34 -0
- package/examples/starter/node_modules/resolve/test/filter_sync.js +33 -0
- package/examples/starter/node_modules/resolve/test/home_paths.js +127 -0
- package/examples/starter/node_modules/resolve/test/home_paths_sync.js +114 -0
- package/examples/starter/node_modules/resolve/test/mock.js +315 -0
- package/examples/starter/node_modules/resolve/test/mock_sync.js +214 -0
- package/examples/starter/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/examples/starter/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/examples/starter/node_modules/resolve/test/module_dir.js +56 -0
- package/examples/starter/node_modules/resolve/test/node-modules-paths.js +143 -0
- package/examples/starter/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/node_path.js +70 -0
- package/examples/starter/node_modules/resolve/test/nonstring.js +9 -0
- package/examples/starter/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/examples/starter/node_modules/resolve/test/pathfilter.js +75 -0
- package/examples/starter/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/examples/starter/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/examples/starter/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/examples/starter/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/examples/starter/node_modules/resolve/test/precedence.js +23 -0
- package/examples/starter/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/baz/package.json +4 -0
- package/examples/starter/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/examples/starter/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/examples/starter/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/examples/starter/node_modules/resolve/test/resolver/false_main/index.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/false_main/package.json +4 -0
- package/examples/starter/node_modules/resolve/test/resolver/foo.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/examples/starter/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/examples/starter/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/examples/starter/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/mug.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/examples/starter/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/examples/starter/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- package/examples/starter/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- package/examples/starter/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/examples/starter/node_modules/resolve/test/resolver.js +597 -0
- package/examples/starter/node_modules/resolve/test/resolver_sync.js +730 -0
- package/examples/starter/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/examples/starter/node_modules/resolve/test/shadowed_core.js +54 -0
- package/examples/starter/node_modules/resolve/test/subdirs.js +13 -0
- package/examples/starter/node_modules/resolve/test/symlinks.js +176 -0
- package/examples/starter/node_modules/resolve-from/index.js +47 -0
- package/examples/starter/node_modules/resolve-from/license +9 -0
- package/examples/starter/node_modules/resolve-from/package.json +34 -0
- package/examples/starter/node_modules/resolve-from/readme.md +72 -0
- package/examples/starter/node_modules/shelljs/CHANGELOG.md +942 -0
- package/examples/starter/node_modules/shelljs/LICENSE +26 -0
- package/examples/starter/node_modules/shelljs/README.md +835 -0
- package/examples/starter/node_modules/shelljs/bin/shjs +48 -0
- package/examples/starter/node_modules/shelljs/commands.js +29 -0
- package/examples/starter/node_modules/shelljs/global.js +12 -0
- package/examples/starter/node_modules/shelljs/make.js +57 -0
- package/examples/starter/node_modules/shelljs/package.json +79 -0
- package/examples/starter/node_modules/shelljs/plugin.js +16 -0
- package/examples/starter/node_modules/shelljs/shell.js +156 -0
- package/examples/starter/node_modules/shelljs/src/cat.js +76 -0
- package/examples/starter/node_modules/shelljs/src/cd.js +39 -0
- package/examples/starter/node_modules/shelljs/src/chmod.js +216 -0
- package/examples/starter/node_modules/shelljs/src/common.js +468 -0
- package/examples/starter/node_modules/shelljs/src/cp.js +304 -0
- package/examples/starter/node_modules/shelljs/src/dirs.js +212 -0
- package/examples/starter/node_modules/shelljs/src/echo.js +63 -0
- package/examples/starter/node_modules/shelljs/src/error.js +15 -0
- package/examples/starter/node_modules/shelljs/src/exec-child.js +39 -0
- package/examples/starter/node_modules/shelljs/src/exec.js +226 -0
- package/examples/starter/node_modules/shelljs/src/find.js +61 -0
- package/examples/starter/node_modules/shelljs/src/grep.js +73 -0
- package/examples/starter/node_modules/shelljs/src/head.js +107 -0
- package/examples/starter/node_modules/shelljs/src/ln.js +73 -0
- package/examples/starter/node_modules/shelljs/src/ls.js +141 -0
- package/examples/starter/node_modules/shelljs/src/mkdir.js +100 -0
- package/examples/starter/node_modules/shelljs/src/mv.js +118 -0
- package/examples/starter/node_modules/shelljs/src/popd.js +1 -0
- package/examples/starter/node_modules/shelljs/src/pushd.js +1 -0
- package/examples/starter/node_modules/shelljs/src/pwd.js +16 -0
- package/examples/starter/node_modules/shelljs/src/rm.js +201 -0
- package/examples/starter/node_modules/shelljs/src/sed.js +87 -0
- package/examples/starter/node_modules/shelljs/src/set.js +56 -0
- package/examples/starter/node_modules/shelljs/src/sort.js +97 -0
- package/examples/starter/node_modules/shelljs/src/tail.js +80 -0
- package/examples/starter/node_modules/shelljs/src/tempdir.js +75 -0
- package/examples/starter/node_modules/shelljs/src/test.js +85 -0
- package/examples/starter/node_modules/shelljs/src/to.js +37 -0
- package/examples/starter/node_modules/shelljs/src/toEnd.js +36 -0
- package/examples/starter/node_modules/shelljs/src/touch.js +111 -0
- package/examples/starter/node_modules/shelljs/src/uniq.js +92 -0
- package/examples/starter/node_modules/shelljs/src/which.js +118 -0
- package/examples/starter/node_modules/shelljs.exec/.editorconfig +10 -0
- package/examples/starter/node_modules/shelljs.exec/.eslintrc.json +37 -0
- package/examples/starter/node_modules/shelljs.exec/.travis.yml +9 -0
- package/examples/starter/node_modules/shelljs.exec/LICENSE.md +24 -0
- package/examples/starter/node_modules/shelljs.exec/README.md +115 -0
- package/examples/starter/node_modules/shelljs.exec/appveyor.yml +17 -0
- package/examples/starter/node_modules/shelljs.exec/benchmark-results-raw.txt +74 -0
- package/examples/starter/node_modules/shelljs.exec/images/fast.png +0 -0
- package/examples/starter/node_modules/shelljs.exec/images/linux.png +0 -0
- package/examples/starter/node_modules/shelljs.exec/images/slow.png +0 -0
- package/examples/starter/node_modules/shelljs.exec/images/table-linux.odt +0 -0
- package/examples/starter/node_modules/shelljs.exec/images/table-windows.odt +0 -0
- package/examples/starter/node_modules/shelljs.exec/images/windows.png +0 -0
- package/examples/starter/node_modules/shelljs.exec/index.js +35 -0
- package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/defaultOptions.js +6 -0
- package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/index.js +34 -0
- package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/index.spec.js +68 -0
- package/examples/starter/node_modules/shelljs.exec/package.json +58 -0
- package/examples/starter/node_modules/shelljs.exec/test/_js/testImports.js +37 -0
- package/examples/starter/node_modules/shelljs.exec/test/benchmarks/benchmarks.spec.js +288 -0
- package/examples/starter/node_modules/shelljs.exec/test/benchmarks/file1 +1 -0
- package/examples/starter/node_modules/shelljs.exec/test/benchmarks/file2 +1 -0
- package/examples/starter/node_modules/shelljs.exec/test/mocha.opts +6 -0
- package/examples/starter/node_modules/shelljs.exec/test/shelljs.exec/shelljs.exec.spec.js +176 -0
- package/examples/starter/node_modules/supports-color/browser.js +5 -0
- package/examples/starter/node_modules/supports-color/index.js +135 -0
- package/examples/starter/node_modules/supports-color/license +9 -0
- package/examples/starter/node_modules/supports-color/package.json +53 -0
- package/examples/starter/node_modules/supports-color/readme.md +76 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- package/examples/starter/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- package/examples/starter/node_modules/to-regex-range/LICENSE +21 -0
- package/examples/starter/node_modules/to-regex-range/README.md +305 -0
- package/examples/starter/node_modules/to-regex-range/index.js +288 -0
- package/examples/starter/node_modules/to-regex-range/package.json +88 -0
- package/examples/starter/package.json +1 -1
- package/examples/starter/src/index.ts +16 -1
- package/examples/starter/src/plugins/stats/index.ts +19 -14
- package/examples/starter/tsconfig.json +2 -3
- package/package.json +1 -1
- package/src/core.ts +17 -0
- package/examples/starter/node_modules/@donkeylabs/server/README.md +0 -15
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/dev.ts +0 -134
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/generate.ts +0 -445
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/init.ts +0 -205
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/interactive.ts +0 -417
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/plugin.ts +0 -192
- package/examples/starter/node_modules/@donkeylabs/server/cli/commands/route.ts +0 -195
- package/examples/starter/node_modules/@donkeylabs/server/cli/donkeylabs +0 -2
- package/examples/starter/node_modules/@donkeylabs/server/cli/index.ts +0 -114
- package/examples/starter/node_modules/@donkeylabs/server/docs/api-client.md +0 -520
- package/examples/starter/node_modules/@donkeylabs/server/docs/cache.md +0 -437
- package/examples/starter/node_modules/@donkeylabs/server/docs/cli.md +0 -353
- package/examples/starter/node_modules/@donkeylabs/server/docs/core-services.md +0 -338
- package/examples/starter/node_modules/@donkeylabs/server/docs/cron.md +0 -465
- package/examples/starter/node_modules/@donkeylabs/server/docs/errors.md +0 -303
- package/examples/starter/node_modules/@donkeylabs/server/docs/events.md +0 -460
- package/examples/starter/node_modules/@donkeylabs/server/docs/handlers.md +0 -549
- package/examples/starter/node_modules/@donkeylabs/server/docs/jobs.md +0 -556
- package/examples/starter/node_modules/@donkeylabs/server/docs/logger.md +0 -316
- package/examples/starter/node_modules/@donkeylabs/server/docs/middleware.md +0 -682
- package/examples/starter/node_modules/@donkeylabs/server/docs/plugins.md +0 -524
- package/examples/starter/node_modules/@donkeylabs/server/docs/project-structure.md +0 -493
- package/examples/starter/node_modules/@donkeylabs/server/docs/rate-limiter.md +0 -525
- package/examples/starter/node_modules/@donkeylabs/server/docs/router.md +0 -566
- package/examples/starter/node_modules/@donkeylabs/server/docs/sse.md +0 -542
- package/examples/starter/node_modules/@donkeylabs/server/docs/svelte-frontend.md +0 -324
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/context.d.ts +0 -37
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/registry.d.ts +0 -31
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/routes.ts +0 -21
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.env.example +0 -3
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.gitignore.template +0 -4
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/CLAUDE.md +0 -144
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/donkeylabs.config.ts +0 -6
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/package.json +0 -20
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/db.ts +0 -9
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/index.ts +0 -32
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/plugins/stats/index.ts +0 -93
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/index.ts +0 -5
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/index.ts +0 -13
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/models/model.ts +0 -23
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/schema.ts +0 -14
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/tests/integ.test.ts +0 -20
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/tests/unit.test.ts +0 -20
- package/examples/starter/node_modules/@donkeylabs/server/examples/starter/tsconfig.json +0 -27
- package/examples/starter/node_modules/@donkeylabs/server/mcp/donkeylabs-mcp +0 -3238
- package/examples/starter/node_modules/@donkeylabs/server/mcp/server.ts +0 -3238
- package/examples/starter/node_modules/@donkeylabs/server/package.json +0 -77
- package/examples/starter/node_modules/@donkeylabs/server/src/client/base.ts +0 -481
- package/examples/starter/node_modules/@donkeylabs/server/src/client/index.ts +0 -150
- package/examples/starter/node_modules/@donkeylabs/server/src/core/cache.ts +0 -183
- package/examples/starter/node_modules/@donkeylabs/server/src/core/cron.ts +0 -255
- package/examples/starter/node_modules/@donkeylabs/server/src/core/errors.ts +0 -320
- package/examples/starter/node_modules/@donkeylabs/server/src/core/events.ts +0 -163
- package/examples/starter/node_modules/@donkeylabs/server/src/core/index.ts +0 -94
- package/examples/starter/node_modules/@donkeylabs/server/src/core/jobs.ts +0 -334
- package/examples/starter/node_modules/@donkeylabs/server/src/core/logger.ts +0 -131
- package/examples/starter/node_modules/@donkeylabs/server/src/core/rate-limiter.ts +0 -193
- package/examples/starter/node_modules/@donkeylabs/server/src/core/sse.ts +0 -210
- package/examples/starter/node_modules/@donkeylabs/server/src/core.ts +0 -428
- package/examples/starter/node_modules/@donkeylabs/server/src/handlers.ts +0 -182
- package/examples/starter/node_modules/@donkeylabs/server/src/harness.ts +0 -70
- package/examples/starter/node_modules/@donkeylabs/server/src/index.ts +0 -51
- package/examples/starter/node_modules/@donkeylabs/server/src/middleware.ts +0 -34
- package/examples/starter/node_modules/@donkeylabs/server/src/registry.ts +0 -13
- package/examples/starter/node_modules/@donkeylabs/server/src/router.ts +0 -172
- package/examples/starter/node_modules/@donkeylabs/server/src/server.ts +0 -240
|
@@ -0,0 +1,942 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
## [Unreleased](https://github.com/shelljs/shelljs/tree/HEAD)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.2...HEAD)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Shelljs print stderr to console even if exec-only "silent" is true [\#905](https://github.com/shelljs/shelljs/issues/905)
|
|
10
|
+
- refactor: remove common.state.tempDir [\#902](https://github.com/shelljs/shelljs/issues/902)
|
|
11
|
+
- Can't suppress stdout for echo [\#899](https://github.com/shelljs/shelljs/issues/899)
|
|
12
|
+
- exec\(\) doesn't apply the arguments correctly [\#895](https://github.com/shelljs/shelljs/issues/895)
|
|
13
|
+
- Travis CI currently broken [\#893](https://github.com/shelljs/shelljs/issues/893)
|
|
14
|
+
- shell.exec\('npm pack'\) painfully slow [\#885](https://github.com/shelljs/shelljs/issues/885)
|
|
15
|
+
- shelljs.exec cannot find app.asar/node\_modules/shelljs/src/exec-child.js [\#881](https://github.com/shelljs/shelljs/issues/881)
|
|
16
|
+
- test infra: mocks and skipOnWin conflict [\#862](https://github.com/shelljs/shelljs/issues/862)
|
|
17
|
+
- Support for shell function completion on IDE [\#859](https://github.com/shelljs/shelljs/issues/859)
|
|
18
|
+
- echo command shows options in stdout [\#855](https://github.com/shelljs/shelljs/issues/855)
|
|
19
|
+
- silent does not always work [\#851](https://github.com/shelljs/shelljs/issues/851)
|
|
20
|
+
- Appveyor installs the latest npm, instead of the latest compatible npm [\#844](https://github.com/shelljs/shelljs/issues/844)
|
|
21
|
+
- Force symbolic link \(ln -sf\) does not overwrite/recreate existing destination [\#830](https://github.com/shelljs/shelljs/issues/830)
|
|
22
|
+
- inconsistent result when trying to echo to a file [\#798](https://github.com/shelljs/shelljs/issues/798)
|
|
23
|
+
- Prevent require\(\)ing executable-only files [\#789](https://github.com/shelljs/shelljs/issues/789)
|
|
24
|
+
- Cannot set property to of \[object String\] which has only a getter [\#752](https://github.com/shelljs/shelljs/issues/752)
|
|
25
|
+
- which\(\) should check executability before returning a value [\#657](https://github.com/shelljs/shelljs/issues/657)
|
|
26
|
+
- Bad encoding experience [\#456](https://github.com/shelljs/shelljs/issues/456)
|
|
27
|
+
- phpcs very slow [\#440](https://github.com/shelljs/shelljs/issues/440)
|
|
28
|
+
- Error shown when triggering a sigint during shelljs.exec if process.on sigint is defined [\#254](https://github.com/shelljs/shelljs/issues/254)
|
|
29
|
+
- `.to\(file\)` does not mute STDIO output [\#146](https://github.com/shelljs/shelljs/issues/146)
|
|
30
|
+
- Escaping shell arguments to exec\(\) [\#143](https://github.com/shelljs/shelljs/issues/143)
|
|
31
|
+
- Allow multiple string arguments for exec\(\) [\#103](https://github.com/shelljs/shelljs/issues/103)
|
|
32
|
+
- cp does not recursively copy from readonly location [\#98](https://github.com/shelljs/shelljs/issues/98)
|
|
33
|
+
- Handling permissions errors on file I/O [\#64](https://github.com/shelljs/shelljs/issues/64)
|
|
34
|
+
|
|
35
|
+
**Merged pull requests:**
|
|
36
|
+
|
|
37
|
+
- refactor: don't expose tempdir in common.state [\#903](https://github.com/shelljs/shelljs/pull/903) ([nfischer](https://github.com/nfischer))
|
|
38
|
+
- chore\(ci\): fix codecov on travis [\#897](https://github.com/shelljs/shelljs/pull/897) ([nfischer](https://github.com/nfischer))
|
|
39
|
+
- chore\(npm\): add ci-or-install script [\#896](https://github.com/shelljs/shelljs/pull/896) ([nfischer](https://github.com/nfischer))
|
|
40
|
+
- Fix silent exec [\#892](https://github.com/shelljs/shelljs/pull/892) ([nfischer](https://github.com/nfischer))
|
|
41
|
+
- chore\(appveyor\): run entire test matrix [\#886](https://github.com/shelljs/shelljs/pull/886) ([nfischer](https://github.com/nfischer))
|
|
42
|
+
- docs: remove gitter badge [\#880](https://github.com/shelljs/shelljs/pull/880) ([nfischer](https://github.com/nfischer))
|
|
43
|
+
- grep includes the i flag [\#876](https://github.com/shelljs/shelljs/pull/876) ([ppsleep](https://github.com/ppsleep))
|
|
44
|
+
- Fix\(which\): match only executable files \(\#657\) [\#874](https://github.com/shelljs/shelljs/pull/874) ([termosa](https://github.com/termosa))
|
|
45
|
+
- chore: rename some tests [\#871](https://github.com/shelljs/shelljs/pull/871) ([nfischer](https://github.com/nfischer))
|
|
46
|
+
- Fix cp from readonly source [\#870](https://github.com/shelljs/shelljs/pull/870) ([nfischer](https://github.com/nfischer))
|
|
47
|
+
- chore: bump dev dependencies and add package-lock [\#864](https://github.com/shelljs/shelljs/pull/864) ([nfischer](https://github.com/nfischer))
|
|
48
|
+
- fix\(mocks\): fix conflict between mocks and skip [\#863](https://github.com/shelljs/shelljs/pull/863) ([nfischer](https://github.com/nfischer))
|
|
49
|
+
- chore: output npm version in travis [\#850](https://github.com/shelljs/shelljs/pull/850) ([nfischer](https://github.com/nfischer))
|
|
50
|
+
- Prevent require-ing bin/shjs [\#848](https://github.com/shelljs/shelljs/pull/848) ([freitagbr](https://github.com/freitagbr))
|
|
51
|
+
- chore\(appveyor\): do not use latest npm [\#847](https://github.com/shelljs/shelljs/pull/847) ([nfischer](https://github.com/nfischer))
|
|
52
|
+
- chore: update shelljs-release version [\#846](https://github.com/shelljs/shelljs/pull/846) ([nfischer](https://github.com/nfischer))
|
|
53
|
+
|
|
54
|
+
## [v0.8.2](https://github.com/shelljs/shelljs/tree/v0.8.2) (2018-05-08)
|
|
55
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.1...v0.8.2)
|
|
56
|
+
|
|
57
|
+
**Closed issues:**
|
|
58
|
+
|
|
59
|
+
- High severity vulnerability in shelljs 0.8.1 [\#842](https://github.com/shelljs/shelljs/issues/842)
|
|
60
|
+
- Add test for ls\(\) on a symlink to a directory [\#795](https://github.com/shelljs/shelljs/issues/795)
|
|
61
|
+
- Harden shell.exec by writing the child process in a source file [\#782](https://github.com/shelljs/shelljs/issues/782)
|
|
62
|
+
- shell.exec\(\) doesn't respond correctly to config.fatal = true [\#735](https://github.com/shelljs/shelljs/issues/735)
|
|
63
|
+
- Merge 'exec: internal error' with ShellJSInternalError [\#734](https://github.com/shelljs/shelljs/issues/734)
|
|
64
|
+
- exec returning null from command [\#724](https://github.com/shelljs/shelljs/issues/724)
|
|
65
|
+
- Only Get Stderr from Exec [\#371](https://github.com/shelljs/shelljs/issues/371)
|
|
66
|
+
- Execute child.stdout.on before child.on\("exit"\) [\#224](https://github.com/shelljs/shelljs/issues/224)
|
|
67
|
+
|
|
68
|
+
**Merged pull requests:**
|
|
69
|
+
|
|
70
|
+
- Workaround codecov bug of miscalculation of coverage \(\#795\) [\#838](https://github.com/shelljs/shelljs/pull/838) ([dwi2](https://github.com/dwi2))
|
|
71
|
+
- Update doc comments and regenerate README.md. [\#825](https://github.com/shelljs/shelljs/pull/825) ([Zearin](https://github.com/Zearin))
|
|
72
|
+
- chore: update contributing guidelines [\#817](https://github.com/shelljs/shelljs/pull/817) ([nfischer](https://github.com/nfischer))
|
|
73
|
+
- chore\(lint\): don't allow excess trailing newlines [\#816](https://github.com/shelljs/shelljs/pull/816) ([nfischer](https://github.com/nfischer))
|
|
74
|
+
- Remove separate "internal error" from exec [\#802](https://github.com/shelljs/shelljs/pull/802) ([freitagbr](https://github.com/freitagbr))
|
|
75
|
+
|
|
76
|
+
## [v0.8.1](https://github.com/shelljs/shelljs/tree/v0.8.1) (2018-01-20)
|
|
77
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.0...v0.8.1)
|
|
78
|
+
|
|
79
|
+
**Closed issues:**
|
|
80
|
+
|
|
81
|
+
- Exec failing with internal error when piping large output [\#818](https://github.com/shelljs/shelljs/issues/818)
|
|
82
|
+
|
|
83
|
+
**Merged pull requests:**
|
|
84
|
+
|
|
85
|
+
- Revert "refactor\(exec\): remove paramsFile \(\#807\)" [\#819](https://github.com/shelljs/shelljs/pull/819) ([nfischer](https://github.com/nfischer))
|
|
86
|
+
|
|
87
|
+
## [v0.8.0](https://github.com/shelljs/shelljs/tree/v0.8.0) (2018-01-12)
|
|
88
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.8...v0.8.0)
|
|
89
|
+
|
|
90
|
+
**Closed issues:**
|
|
91
|
+
|
|
92
|
+
- Snyk vulnerability DB reporting command injection vulnerability in ShellJS [\#810](https://github.com/shelljs/shelljs/issues/810)
|
|
93
|
+
- chore: upgrade nyc [\#803](https://github.com/shelljs/shelljs/issues/803)
|
|
94
|
+
- Update CI to use Node v9 [\#799](https://github.com/shelljs/shelljs/issues/799)
|
|
95
|
+
- Link to FAQ wiki section in our issue template [\#787](https://github.com/shelljs/shelljs/issues/787)
|
|
96
|
+
- Is it possible to get a js library\(file\) for ShellJS [\#776](https://github.com/shelljs/shelljs/issues/776)
|
|
97
|
+
- 48, [\#774](https://github.com/shelljs/shelljs/issues/774)
|
|
98
|
+
- 47 [\#773](https://github.com/shelljs/shelljs/issues/773)
|
|
99
|
+
- Exec function calls JSON.stringify on command [\#772](https://github.com/shelljs/shelljs/issues/772)
|
|
100
|
+
- getting different result from terminal and with shelljs [\#769](https://github.com/shelljs/shelljs/issues/769)
|
|
101
|
+
- test\(\) does not support -w and -x options [\#768](https://github.com/shelljs/shelljs/issues/768)
|
|
102
|
+
- Snyk "high severity" issue [\#766](https://github.com/shelljs/shelljs/issues/766)
|
|
103
|
+
- Snyk "high security [\#765](https://github.com/shelljs/shelljs/issues/765)
|
|
104
|
+
- ShellJS doesn't respect NPM Registry being set outside of it [\#761](https://github.com/shelljs/shelljs/issues/761)
|
|
105
|
+
- Run second shell script [\#756](https://github.com/shelljs/shelljs/issues/756)
|
|
106
|
+
- shelljs seems NOT compatible with nexe under CentOS 6.5 [\#754](https://github.com/shelljs/shelljs/issues/754)
|
|
107
|
+
- Feature request: pushd/popd -q option [\#753](https://github.com/shelljs/shelljs/issues/753)
|
|
108
|
+
- cat doesn't support '-n' option [\#750](https://github.com/shelljs/shelljs/issues/750)
|
|
109
|
+
- shelljs run xcodebuild error [\#749](https://github.com/shelljs/shelljs/issues/749)
|
|
110
|
+
- Add wrappers around fs.statSync and fs.lstatSync [\#745](https://github.com/shelljs/shelljs/issues/745)
|
|
111
|
+
- Improve coverage for exec\(\) [\#742](https://github.com/shelljs/shelljs/issues/742)
|
|
112
|
+
- Improve coverage for head\(\) [\#741](https://github.com/shelljs/shelljs/issues/741)
|
|
113
|
+
- shelljs is no longer used in PDF.js [\#737](https://github.com/shelljs/shelljs/issues/737)
|
|
114
|
+
- ls doesn't follow links to directories [\#733](https://github.com/shelljs/shelljs/issues/733)
|
|
115
|
+
- Add test for `ls regular-file.txt` [\#732](https://github.com/shelljs/shelljs/issues/732)
|
|
116
|
+
- Clean up common tests [\#714](https://github.com/shelljs/shelljs/issues/714)
|
|
117
|
+
- Cant get encoding buffer to work on exec [\#675](https://github.com/shelljs/shelljs/issues/675)
|
|
118
|
+
- Set up Codecov for the project [\#671](https://github.com/shelljs/shelljs/issues/671)
|
|
119
|
+
- ShellJS: internal error Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys' [\#514](https://github.com/shelljs/shelljs/issues/514)
|
|
120
|
+
- Feature request: provide a way to skip option parsing [\#778](https://github.com/shelljs/shelljs/issues/778)
|
|
121
|
+
- Switch to os.homedir\(\) when we move to v4+ [\#683](https://github.com/shelljs/shelljs/issues/683)
|
|
122
|
+
- Drop support for v0.12 [\#647](https://github.com/shelljs/shelljs/issues/647)
|
|
123
|
+
- feature: echo -n [\#559](https://github.com/shelljs/shelljs/issues/559)
|
|
124
|
+
- Don't kill the node process upon unexpected error [\#483](https://github.com/shelljs/shelljs/issues/483)
|
|
125
|
+
- Echo doesn't return value ending in a trailing newline [\#476](https://github.com/shelljs/shelljs/issues/476)
|
|
126
|
+
- Synchronous exec stalls permenantly when there is an error/w the shell [\#7](https://github.com/shelljs/shelljs/issues/7)
|
|
127
|
+
|
|
128
|
+
**Merged pull requests:**
|
|
129
|
+
|
|
130
|
+
- docs: announce plugin API [\#812](https://github.com/shelljs/shelljs/pull/812) ([nfischer](https://github.com/nfischer))
|
|
131
|
+
- chore: update CI to Node v9 [\#811](https://github.com/shelljs/shelljs/pull/811) ([nfischer](https://github.com/nfischer))
|
|
132
|
+
- refactor\(exec\): remove paramsFile [\#807](https://github.com/shelljs/shelljs/pull/807) ([nfischer](https://github.com/nfischer))
|
|
133
|
+
- chore: update nyc dependency [\#805](https://github.com/shelljs/shelljs/pull/805) ([nfischer](https://github.com/nfischer))
|
|
134
|
+
- refactor: harden plugins against unknown options [\#804](https://github.com/shelljs/shelljs/pull/804) ([nfischer](https://github.com/nfischer))
|
|
135
|
+
- chore\(eslint\): use words instead of numbers [\#797](https://github.com/shelljs/shelljs/pull/797) ([nfischer](https://github.com/nfischer))
|
|
136
|
+
- Add note to issue template about FAQ [\#794](https://github.com/shelljs/shelljs/pull/794) ([freitagbr](https://github.com/freitagbr))
|
|
137
|
+
- Remove codeFile parameter [\#791](https://github.com/shelljs/shelljs/pull/791) ([nfischer](https://github.com/nfischer))
|
|
138
|
+
- Use execFileSync to launch child process [\#790](https://github.com/shelljs/shelljs/pull/790) ([nfischer](https://github.com/nfischer))
|
|
139
|
+
- refactor\(exec\): move child process to source file [\#786](https://github.com/shelljs/shelljs/pull/786) ([nfischer](https://github.com/nfischer))
|
|
140
|
+
- Remove unnecessary shell.error checks from common tests [\#785](https://github.com/shelljs/shelljs/pull/785) ([freitagbr](https://github.com/freitagbr))
|
|
141
|
+
- Add a test for ls for a single file [\#784](https://github.com/shelljs/shelljs/pull/784) ([freitagbr](https://github.com/freitagbr))
|
|
142
|
+
- Wrap fs.statSync and fs.lstatSync [\#783](https://github.com/shelljs/shelljs/pull/783) ([freitagbr](https://github.com/freitagbr))
|
|
143
|
+
- chore: set AVA options [\#780](https://github.com/shelljs/shelljs/pull/780) ([nfischer](https://github.com/nfischer))
|
|
144
|
+
- chore: clean up refs to unsupported node versions [\#779](https://github.com/shelljs/shelljs/pull/779) ([nfischer](https://github.com/nfischer))
|
|
145
|
+
- Added `-q` \(quiet\) option to `push`, `popd`, `dirs` functions. [\#777](https://github.com/shelljs/shelljs/pull/777) ([alexreg](https://github.com/alexreg))
|
|
146
|
+
- feat\(cat\): number output lines \(\#750\) [\#775](https://github.com/shelljs/shelljs/pull/775) ([gcca](https://github.com/gcca))
|
|
147
|
+
- refactor\(test\): update AVA and refactor tests [\#760](https://github.com/shelljs/shelljs/pull/760) ([nfischer](https://github.com/nfischer))
|
|
148
|
+
- chore: add skipOnWin and skipOnUnix test helpers [\#746](https://github.com/shelljs/shelljs/pull/746) ([nfischer](https://github.com/nfischer))
|
|
149
|
+
- test\(exec\): add tests for coverage [\#744](https://github.com/shelljs/shelljs/pull/744) ([nfischer](https://github.com/nfischer))
|
|
150
|
+
- test\(head\): improve coverage [\#743](https://github.com/shelljs/shelljs/pull/743) ([nfischer](https://github.com/nfischer))
|
|
151
|
+
- Remove PDF.js mention from README.md [\#738](https://github.com/shelljs/shelljs/pull/738) ([voy](https://github.com/voy))
|
|
152
|
+
- Provide an API to pass parameters which resemble options [\#792](https://github.com/shelljs/shelljs/pull/792) ([nfischer](https://github.com/nfischer))
|
|
153
|
+
- Fix ls not following links to directories by default [\#764](https://github.com/shelljs/shelljs/pull/764) ([freitagbr](https://github.com/freitagbr))
|
|
154
|
+
- Add "encoding" option to exec [\#763](https://github.com/shelljs/shelljs/pull/763) ([freitagbr](https://github.com/freitagbr))
|
|
155
|
+
- Merge dev into master [\#731](https://github.com/shelljs/shelljs/pull/731) ([freitagbr](https://github.com/freitagbr))
|
|
156
|
+
- Deprecate common.getUserHome, advise using os.homedir instead [\#725](https://github.com/shelljs/shelljs/pull/725) ([freitagbr](https://github.com/freitagbr))
|
|
157
|
+
- Echo test mocks [\#708](https://github.com/shelljs/shelljs/pull/708) ([freitagbr](https://github.com/freitagbr))
|
|
158
|
+
- Safely exit by throwing an error [\#546](https://github.com/shelljs/shelljs/pull/546) ([freitagbr](https://github.com/freitagbr))
|
|
159
|
+
- chore\(make\): depreciate shelljs/make [\#431](https://github.com/shelljs/shelljs/pull/431) ([ariporad](https://github.com/ariporad))
|
|
160
|
+
|
|
161
|
+
## [v0.7.8](https://github.com/shelljs/shelljs/tree/v0.7.8) (2017-06-07)
|
|
162
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.7...v0.7.8)
|
|
163
|
+
|
|
164
|
+
**Closed issues:**
|
|
165
|
+
|
|
166
|
+
- Add node v8 to CI [\#729](https://github.com/shelljs/shelljs/issues/729)
|
|
167
|
+
- Exec not working in Electron ! [\#726](https://github.com/shelljs/shelljs/issues/726)
|
|
168
|
+
- is rechoir used anywhere? [\#723](https://github.com/shelljs/shelljs/issues/723)
|
|
169
|
+
- ShellJS: internal error on shelljs.mkdir\('myFile/myDir'\) [\#720](https://github.com/shelljs/shelljs/issues/720)
|
|
170
|
+
- Can't make sed perform global replace [\#719](https://github.com/shelljs/shelljs/issues/719)
|
|
171
|
+
- grep: option not recognized: l [\#717](https://github.com/shelljs/shelljs/issues/717)
|
|
172
|
+
- Problems getting code, stdout, stderr [\#715](https://github.com/shelljs/shelljs/issues/715)
|
|
173
|
+
- Copying hidden files fails on Windows 10 [\#711](https://github.com/shelljs/shelljs/issues/711)
|
|
174
|
+
- How am I suppose to handle errors with ShellJS? [\#707](https://github.com/shelljs/shelljs/issues/707)
|
|
175
|
+
- use cp\('-r', './src', './dist'\) bug [\#705](https://github.com/shelljs/shelljs/issues/705)
|
|
176
|
+
- Way to ignore files in globs. [\#699](https://github.com/shelljs/shelljs/issues/699)
|
|
177
|
+
- Buffer constructor is deprecated [\#694](https://github.com/shelljs/shelljs/issues/694)
|
|
178
|
+
- source command not working via exec method. [\#693](https://github.com/shelljs/shelljs/issues/693)
|
|
179
|
+
- Would you be interested in a PR for `open`? [\#692](https://github.com/shelljs/shelljs/issues/692)
|
|
180
|
+
- Get rid of common.platform in favor of process.platform [\#670](https://github.com/shelljs/shelljs/issues/670)
|
|
181
|
+
- Passing empty string to cp throws internal error [\#664](https://github.com/shelljs/shelljs/issues/664)
|
|
182
|
+
- Why does sed split files into an array, call replace on each line and rejoin? [\#645](https://github.com/shelljs/shelljs/issues/645)
|
|
183
|
+
- feat: cp & mv should not overwrite recently created files [\#631](https://github.com/shelljs/shelljs/issues/631)
|
|
184
|
+
- Echo tests unnecessarily run tests in own process [\#622](https://github.com/shelljs/shelljs/issues/622)
|
|
185
|
+
- rm -rf on a symbolic link to a dir deletes its contents [\#587](https://github.com/shelljs/shelljs/issues/587)
|
|
186
|
+
- "Cannot extract package" with node-webkit [\#181](https://github.com/shelljs/shelljs/issues/181)
|
|
187
|
+
- EBADF, bad file descriptor [\#180](https://github.com/shelljs/shelljs/issues/180)
|
|
188
|
+
|
|
189
|
+
**Merged pull requests:**
|
|
190
|
+
|
|
191
|
+
- Add node 8 to CI [\#730](https://github.com/shelljs/shelljs/pull/730) ([freitagbr](https://github.com/freitagbr))
|
|
192
|
+
- fix\(mkdir\): improve error handling around files [\#721](https://github.com/shelljs/shelljs/pull/721) ([nfischer](https://github.com/nfischer))
|
|
193
|
+
- Properly handle directories as arguments [\#713](https://github.com/shelljs/shelljs/pull/713) ([nfischer](https://github.com/nfischer))
|
|
194
|
+
- Add common.buffer [\#710](https://github.com/shelljs/shelljs/pull/710) ([freitagbr](https://github.com/freitagbr))
|
|
195
|
+
- Fix common.expand error [\#709](https://github.com/shelljs/shelljs/pull/709) ([freitagbr](https://github.com/freitagbr))
|
|
196
|
+
- refactor: remove unnecessary common.js imports [\#703](https://github.com/shelljs/shelljs/pull/703) ([nfischer](https://github.com/nfischer))
|
|
197
|
+
- Fix \#631 throw error when overwriting recently created file [\#702](https://github.com/shelljs/shelljs/pull/702) ([uttpal](https://github.com/uttpal))
|
|
198
|
+
- Small clarification of verbose flag [\#691](https://github.com/shelljs/shelljs/pull/691) ([zommerfelds](https://github.com/zommerfelds))
|
|
199
|
+
- fix\(grep, sed, sort, uniq\): Split only on newline characters [\#690](https://github.com/shelljs/shelljs/pull/690) ([freitagbr](https://github.com/freitagbr))
|
|
200
|
+
- Refactor: Use process.platform across codebase [\#689](https://github.com/shelljs/shelljs/pull/689) ([freitagbr](https://github.com/freitagbr))
|
|
201
|
+
- Remove contents of symlink to dir with rm -rf [\#688](https://github.com/shelljs/shelljs/pull/688) ([freitagbr](https://github.com/freitagbr))
|
|
202
|
+
- Echo stdout [\#677](https://github.com/shelljs/shelljs/pull/677) ([nfischer](https://github.com/nfischer))
|
|
203
|
+
|
|
204
|
+
## [v0.7.7](https://github.com/shelljs/shelljs/tree/v0.7.7) (2017-03-09)
|
|
205
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.6...v0.7.7)
|
|
206
|
+
|
|
207
|
+
**Closed issues:**
|
|
208
|
+
|
|
209
|
+
- Error output should be consistent across all platforms. [\#681](https://github.com/shelljs/shelljs/issues/681)
|
|
210
|
+
- \*CRITICAL data loss\* shell.cp\(\) Content of file is erased when trying to copy it to the folder it already belongs to [\#678](https://github.com/shelljs/shelljs/issues/678)
|
|
211
|
+
- Use with webpack broken in 0.7.6 [\#667](https://github.com/shelljs/shelljs/issues/667)
|
|
212
|
+
- Difference between bash ls -R and ShellJS ls -R with symlinks [\#666](https://github.com/shelljs/shelljs/issues/666)
|
|
213
|
+
- Refactor which\(\) \(too many repeated code blocks\) [\#656](https://github.com/shelljs/shelljs/issues/656)
|
|
214
|
+
- find\(\) raises error when unable to find any files matching, expected to return empty array. [\#653](https://github.com/shelljs/shelljs/issues/653)
|
|
215
|
+
- Reformat the markdown in RELEASE.md [\#642](https://github.com/shelljs/shelljs/issues/642)
|
|
216
|
+
- rm -rf doesn't work if the directory contains an asar archive in Electron [\#618](https://github.com/shelljs/shelljs/issues/618)
|
|
217
|
+
- Add support for other file types in rm [\#617](https://github.com/shelljs/shelljs/issues/617)
|
|
218
|
+
- Feature request: ls -L option [\#563](https://github.com/shelljs/shelljs/issues/563)
|
|
219
|
+
- How to send SIGINT signal to child process launched with exec [\#518](https://github.com/shelljs/shelljs/issues/518)
|
|
220
|
+
- feature request: option to add node\_modules to the path for shelljs scripts [\#469](https://github.com/shelljs/shelljs/issues/469)
|
|
221
|
+
- high cpu usage during synchronous exec [\#167](https://github.com/shelljs/shelljs/issues/167)
|
|
222
|
+
|
|
223
|
+
**Merged pull requests:**
|
|
224
|
+
|
|
225
|
+
- Add support for removing fifos [\#687](https://github.com/shelljs/shelljs/pull/687) ([freitagbr](https://github.com/freitagbr))
|
|
226
|
+
- chore: add codecov script to appveyor CI [\#686](https://github.com/shelljs/shelljs/pull/686) ([nfischer](https://github.com/nfischer))
|
|
227
|
+
- Refactor tests to improve readability [\#685](https://github.com/shelljs/shelljs/pull/685) ([nfischer](https://github.com/nfischer))
|
|
228
|
+
- fix: convert error output to be consistent cross-platform [\#684](https://github.com/shelljs/shelljs/pull/684) ([nfischer](https://github.com/nfischer))
|
|
229
|
+
- chore: add codecov [\#682](https://github.com/shelljs/shelljs/pull/682) ([nfischer](https://github.com/nfischer))
|
|
230
|
+
- Fix cp overwriting identical files [\#679](https://github.com/shelljs/shelljs/pull/679) ([freitagbr](https://github.com/freitagbr))
|
|
231
|
+
- Modified glob pattern. Fixes \#666 [\#676](https://github.com/shelljs/shelljs/pull/676) ([frandiox](https://github.com/frandiox))
|
|
232
|
+
- refactor\(parseOptions\): better handle errors [\#674](https://github.com/shelljs/shelljs/pull/674) ([nfischer](https://github.com/nfischer))
|
|
233
|
+
- test: add misc. tests to improve coverage [\#673](https://github.com/shelljs/shelljs/pull/673) ([nfischer](https://github.com/nfischer))
|
|
234
|
+
- test: don't count hard-to-test lines for coverage [\#672](https://github.com/shelljs/shelljs/pull/672) ([nfischer](https://github.com/nfischer))
|
|
235
|
+
- fix: switch commands.json -\> commands.js [\#668](https://github.com/shelljs/shelljs/pull/668) ([nfischer](https://github.com/nfischer))
|
|
236
|
+
- ls -L \(follow symlinks\) [\#665](https://github.com/shelljs/shelljs/pull/665) ([frandiox](https://github.com/frandiox))
|
|
237
|
+
- docs\(chmod\): document `options` argument [\#663](https://github.com/shelljs/shelljs/pull/663) ([gkalpak](https://github.com/gkalpak))
|
|
238
|
+
- docs: clean up RELEASE.md [\#662](https://github.com/shelljs/shelljs/pull/662) ([nfischer](https://github.com/nfischer))
|
|
239
|
+
- docs: miscellaneous README changes [\#661](https://github.com/shelljs/shelljs/pull/661) ([nfischer](https://github.com/nfischer))
|
|
240
|
+
- Fix typo in README [\#660](https://github.com/shelljs/shelljs/pull/660) ([faheel](https://github.com/faheel))
|
|
241
|
+
- refactor: reduce repeated code in which\(\) [\#659](https://github.com/shelljs/shelljs/pull/659) ([nfischer](https://github.com/nfischer))
|
|
242
|
+
- feature: add -a option for which command [\#655](https://github.com/shelljs/shelljs/pull/655) ([termosa](https://github.com/termosa))
|
|
243
|
+
- Fix find ENOENT [\#654](https://github.com/shelljs/shelljs/pull/654) ([freitagbr](https://github.com/freitagbr))
|
|
244
|
+
- Safely exit by throwing an error [\#649](https://github.com/shelljs/shelljs/pull/649) ([freitagbr](https://github.com/freitagbr))
|
|
245
|
+
- Chore drop 0.12 [\#648](https://github.com/shelljs/shelljs/pull/648) ([nfischer](https://github.com/nfischer))
|
|
246
|
+
- chore\(lint\): Enforce a trailing comma for multi-line [\#646](https://github.com/shelljs/shelljs/pull/646) ([nfischer](https://github.com/nfischer))
|
|
247
|
+
- docs\(release\): use bulleted list [\#643](https://github.com/shelljs/shelljs/pull/643) ([freitagbr](https://github.com/freitagbr))
|
|
248
|
+
|
|
249
|
+
## [v0.7.6](https://github.com/shelljs/shelljs/tree/v0.7.6) (2017-01-08)
|
|
250
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.5...v0.7.6)
|
|
251
|
+
|
|
252
|
+
**Closed issues:**
|
|
253
|
+
|
|
254
|
+
- unable to execute ionic command with shell js [\#640](https://github.com/shelljs/shelljs/issues/640)
|
|
255
|
+
- How to increase ShellJS buffer size? [\#639](https://github.com/shelljs/shelljs/issues/639)
|
|
256
|
+
- mkdir fails with non-normalized path [\#634](https://github.com/shelljs/shelljs/issues/634)
|
|
257
|
+
- Move execPath into common [\#633](https://github.com/shelljs/shelljs/issues/633)
|
|
258
|
+
- QUESTION: Feedback while an operation is running? [\#629](https://github.com/shelljs/shelljs/issues/629)
|
|
259
|
+
- Test setup/cleanup is broken [\#621](https://github.com/shelljs/shelljs/issues/621)
|
|
260
|
+
- Ignore temp directories when running lint [\#620](https://github.com/shelljs/shelljs/issues/620)
|
|
261
|
+
- parseOptions should throw an error if the option string doesn't start with '-' [\#614](https://github.com/shelljs/shelljs/issues/614)
|
|
262
|
+
- chore: LGTM.co is gone [\#595](https://github.com/shelljs/shelljs/issues/595)
|
|
263
|
+
- refactor: objectAssign should refer to Object.assign if it exists, or the internal polyfill otherwise [\#592](https://github.com/shelljs/shelljs/issues/592)
|
|
264
|
+
- parseOptions: allow a way to keep errors silent \(exception only\) [\#591](https://github.com/shelljs/shelljs/issues/591)
|
|
265
|
+
- \[Question\] commands with multiple options / arguments? [\#589](https://github.com/shelljs/shelljs/issues/589)
|
|
266
|
+
- feature: GNU Parallel [\#585](https://github.com/shelljs/shelljs/issues/585)
|
|
267
|
+
- write to file [\#568](https://github.com/shelljs/shelljs/issues/568)
|
|
268
|
+
- Cannot figure out how to disable globbing for rm [\#567](https://github.com/shelljs/shelljs/issues/567)
|
|
269
|
+
- Switch to the ava test framework [\#560](https://github.com/shelljs/shelljs/issues/560)
|
|
270
|
+
- Option not recognized [\#556](https://github.com/shelljs/shelljs/issues/556)
|
|
271
|
+
- chore: add @freitagbr to LGTM maintainers [\#552](https://github.com/shelljs/shelljs/issues/552)
|
|
272
|
+
- chore: set up dev branch [\#548](https://github.com/shelljs/shelljs/issues/548)
|
|
273
|
+
- bug: cp\(\) doesn't always copy everything [\#547](https://github.com/shelljs/shelljs/issues/547)
|
|
274
|
+
- User-friendly lint command [\#544](https://github.com/shelljs/shelljs/issues/544)
|
|
275
|
+
- Lint warning [\#542](https://github.com/shelljs/shelljs/issues/542)
|
|
276
|
+
- chore: add nodejs v7 to CI [\#537](https://github.com/shelljs/shelljs/issues/537)
|
|
277
|
+
- error.code is not always available [\#536](https://github.com/shelljs/shelljs/issues/536)
|
|
278
|
+
- Add shx as a dependency for testing [\#525](https://github.com/shelljs/shelljs/issues/525)
|
|
279
|
+
- Feature request: allow `common.error\(\)` to optionally not insert a prefix and optionally not print to console [\#523](https://github.com/shelljs/shelljs/issues/523)
|
|
280
|
+
- Feature request: Add "shelljs.unlink" [\#519](https://github.com/shelljs/shelljs/issues/519)
|
|
281
|
+
- Sed should allow a replacement string to contain `\1` for match groups [\#507](https://github.com/shelljs/shelljs/issues/507)
|
|
282
|
+
- Usage with neodoc [\#445](https://github.com/shelljs/shelljs/issues/445)
|
|
283
|
+
- \[ Feature idea \] synchronous sleep command [\#441](https://github.com/shelljs/shelljs/issues/441)
|
|
284
|
+
- Improve test coverage [\#347](https://github.com/shelljs/shelljs/issues/347)
|
|
285
|
+
- Add a way to prevent shell-expansion on commands \(this issue is not for exec\) [\#345](https://github.com/shelljs/shelljs/issues/345)
|
|
286
|
+
- Chown [\#183](https://github.com/shelljs/shelljs/issues/183)
|
|
287
|
+
- spawn EMFILE [\#81](https://github.com/shelljs/shelljs/issues/81)
|
|
288
|
+
- Rewrite exec using execsync-ng \(which uses node-ffi\) [\#66](https://github.com/shelljs/shelljs/issues/66)
|
|
289
|
+
- `exec` gets stuck on my Debian box [\#51](https://github.com/shelljs/shelljs/issues/51)
|
|
290
|
+
- 100% cpu usage when a nodejs script goes side ways executing a command. [\#5](https://github.com/shelljs/shelljs/issues/5)
|
|
291
|
+
|
|
292
|
+
**Merged pull requests:**
|
|
293
|
+
|
|
294
|
+
- refactor: add config.reset\(\) and .resetForTesting\(\) [\#641](https://github.com/shelljs/shelljs/pull/641) ([nfischer](https://github.com/nfischer))
|
|
295
|
+
- chore: set up test coverage [\#638](https://github.com/shelljs/shelljs/pull/638) ([nfischer](https://github.com/nfischer))
|
|
296
|
+
- refactor: create common.execPath [\#636](https://github.com/shelljs/shelljs/pull/636) ([nfischer](https://github.com/nfischer))
|
|
297
|
+
- fix: allow non-normalized paths as input to mkdir [\#635](https://github.com/shelljs/shelljs/pull/635) ([nfischer](https://github.com/nfischer))
|
|
298
|
+
- Finalize moving to ava [\#630](https://github.com/shelljs/shelljs/pull/630) ([freitagbr](https://github.com/freitagbr))
|
|
299
|
+
- test: refactor pushd tests to AVA [\#627](https://github.com/shelljs/shelljs/pull/627) ([nfischer](https://github.com/nfischer))
|
|
300
|
+
- test: refactor popd tests to AVA [\#626](https://github.com/shelljs/shelljs/pull/626) ([nfischer](https://github.com/nfischer))
|
|
301
|
+
- test: refactor shjs tests to AVA [\#625](https://github.com/shelljs/shelljs/pull/625) ([nfischer](https://github.com/nfischer))
|
|
302
|
+
- test: remove tests for make \(deprecated\) [\#624](https://github.com/shelljs/shelljs/pull/624) ([nfischer](https://github.com/nfischer))
|
|
303
|
+
- Ignore test temp directories during linting [\#623](https://github.com/shelljs/shelljs/pull/623) ([freitagbr](https://github.com/freitagbr))
|
|
304
|
+
- refactor: list all commands in commands.json [\#616](https://github.com/shelljs/shelljs/pull/616) ([nfischer](https://github.com/nfischer))
|
|
305
|
+
- Throw an error if the options string does not start with '-' [\#615](https://github.com/shelljs/shelljs/pull/615) ([freitagbr](https://github.com/freitagbr))
|
|
306
|
+
- chore: switch to files attribute from npmignore [\#613](https://github.com/shelljs/shelljs/pull/613) ([nfischer](https://github.com/nfischer))
|
|
307
|
+
- test: refactor 'test' command tests to AVA [\#612](https://github.com/shelljs/shelljs/pull/612) ([nfischer](https://github.com/nfischer))
|
|
308
|
+
- test: refactor find tests to AVA [\#611](https://github.com/shelljs/shelljs/pull/611) ([nfischer](https://github.com/nfischer))
|
|
309
|
+
- test: refactor ln tests to AVA [\#610](https://github.com/shelljs/shelljs/pull/610) ([nfischer](https://github.com/nfischer))
|
|
310
|
+
- test: refactor ls to use AVA [\#609](https://github.com/shelljs/shelljs/pull/609) ([nfischer](https://github.com/nfischer))
|
|
311
|
+
- test: refactor pipe tests to AVA [\#608](https://github.com/shelljs/shelljs/pull/608) ([nfischer](https://github.com/nfischer))
|
|
312
|
+
- test: refactor sed tests to AVA [\#607](https://github.com/shelljs/shelljs/pull/607) ([nfischer](https://github.com/nfischer))
|
|
313
|
+
- test: refactor grep tests to AVA [\#606](https://github.com/shelljs/shelljs/pull/606) ([nfischer](https://github.com/nfischer))
|
|
314
|
+
- test: refactor global tests to AVA [\#605](https://github.com/shelljs/shelljs/pull/605) ([nfischer](https://github.com/nfischer))
|
|
315
|
+
- test: refactor touch tests to AVA [\#604](https://github.com/shelljs/shelljs/pull/604) ([nfischer](https://github.com/nfischer))
|
|
316
|
+
- test: refactor uniq tests to AVA [\#603](https://github.com/shelljs/shelljs/pull/603) ([nfischer](https://github.com/nfischer))
|
|
317
|
+
- test: refactor sort tests to AVA [\#602](https://github.com/shelljs/shelljs/pull/602) ([nfischer](https://github.com/nfischer))
|
|
318
|
+
- test: refactor tail tests to AVA [\#601](https://github.com/shelljs/shelljs/pull/601) ([nfischer](https://github.com/nfischer))
|
|
319
|
+
- test: refactor head tests to AVA [\#600](https://github.com/shelljs/shelljs/pull/600) ([nfischer](https://github.com/nfischer))
|
|
320
|
+
- test: refactor mkdir tests to AVA [\#599](https://github.com/shelljs/shelljs/pull/599) ([nfischer](https://github.com/nfischer))
|
|
321
|
+
- Fix: rm behavior regarding symlinks [\#598](https://github.com/shelljs/shelljs/pull/598) ([freitagbr](https://github.com/freitagbr))
|
|
322
|
+
- test: refactor mv tests to AVA [\#597](https://github.com/shelljs/shelljs/pull/597) ([nfischer](https://github.com/nfischer))
|
|
323
|
+
- Remove files related to lgtm.co [\#596](https://github.com/shelljs/shelljs/pull/596) ([freitagbr](https://github.com/freitagbr))
|
|
324
|
+
- Add ability to configure error from parseOptions [\#594](https://github.com/shelljs/shelljs/pull/594) ([freitagbr](https://github.com/freitagbr))
|
|
325
|
+
- Use Object.assign if possible [\#593](https://github.com/shelljs/shelljs/pull/593) ([freitagbr](https://github.com/freitagbr))
|
|
326
|
+
- Add "-n" option to echo [\#590](https://github.com/shelljs/shelljs/pull/590) ([freitagbr](https://github.com/freitagbr))
|
|
327
|
+
- test: refactor rm tests to AVA [\#586](https://github.com/shelljs/shelljs/pull/586) ([nfischer](https://github.com/nfischer))
|
|
328
|
+
- test: refactor pwd tests to AVA [\#582](https://github.com/shelljs/shelljs/pull/582) ([nfischer](https://github.com/nfischer))
|
|
329
|
+
- test: refactor tempdir tests to AVA [\#581](https://github.com/shelljs/shelljs/pull/581) ([nfischer](https://github.com/nfischer))
|
|
330
|
+
- test: refactor 'which' tests to AVA [\#580](https://github.com/shelljs/shelljs/pull/580) ([nfischer](https://github.com/nfischer))
|
|
331
|
+
- test: refactor plugin tests to AVA [\#579](https://github.com/shelljs/shelljs/pull/579) ([nfischer](https://github.com/nfischer))
|
|
332
|
+
- test: refactor toEnd tests to AVA [\#578](https://github.com/shelljs/shelljs/pull/578) ([nfischer](https://github.com/nfischer))
|
|
333
|
+
- test: refactor to tests to AVA [\#577](https://github.com/shelljs/shelljs/pull/577) ([nfischer](https://github.com/nfischer))
|
|
334
|
+
- test: refactor 'set' tests to AVA [\#576](https://github.com/shelljs/shelljs/pull/576) ([nfischer](https://github.com/nfischer))
|
|
335
|
+
- test: refactor echo tests to AVA [\#575](https://github.com/shelljs/shelljs/pull/575) ([nfischer](https://github.com/nfischer))
|
|
336
|
+
- test: refactor exec tests to AVA [\#574](https://github.com/shelljs/shelljs/pull/574) ([nfischer](https://github.com/nfischer))
|
|
337
|
+
- test: refactor env tests to AVA [\#573](https://github.com/shelljs/shelljs/pull/573) ([nfischer](https://github.com/nfischer))
|
|
338
|
+
- test: refactor dirs tests to AVA [\#572](https://github.com/shelljs/shelljs/pull/572) ([nfischer](https://github.com/nfischer))
|
|
339
|
+
- test: refactor config tests to AVA [\#571](https://github.com/shelljs/shelljs/pull/571) ([nfischer](https://github.com/nfischer))
|
|
340
|
+
- test: refactor common tests to AVA [\#570](https://github.com/shelljs/shelljs/pull/570) ([nfischer](https://github.com/nfischer))
|
|
341
|
+
- test: refactor chmod tests to AVA [\#569](https://github.com/shelljs/shelljs/pull/569) ([nfischer](https://github.com/nfischer))
|
|
342
|
+
- test: refactor cp tests to ava [\#565](https://github.com/shelljs/shelljs/pull/565) ([nfischer](https://github.com/nfischer))
|
|
343
|
+
- test: refactor cat tests to ava [\#564](https://github.com/shelljs/shelljs/pull/564) ([nfischer](https://github.com/nfischer))
|
|
344
|
+
- test: set up ava and move cd.js [\#561](https://github.com/shelljs/shelljs/pull/561) ([nfischer](https://github.com/nfischer))
|
|
345
|
+
- Update sed documentation regarding capture groups [\#558](https://github.com/shelljs/shelljs/pull/558) ([freitagbr](https://github.com/freitagbr))
|
|
346
|
+
- Add newline to output of echo [\#557](https://github.com/shelljs/shelljs/pull/557) ([freitagbr](https://github.com/freitagbr))
|
|
347
|
+
- fix: handle code-less errors more carefully in exec [\#554](https://github.com/shelljs/shelljs/pull/554) ([nfischer](https://github.com/nfischer))
|
|
348
|
+
- Add Brandon Freitag to maintainers/contributors [\#553](https://github.com/shelljs/shelljs/pull/553) ([freitagbr](https://github.com/freitagbr))
|
|
349
|
+
- Get pipe tests running on Windows. [\#550](https://github.com/shelljs/shelljs/pull/550) ([binki](https://github.com/binki))
|
|
350
|
+
- fix: maxdepth doesn't limit total number of copies [\#549](https://github.com/shelljs/shelljs/pull/549) ([nfischer](https://github.com/nfischer))
|
|
351
|
+
- Fix lint warning [\#543](https://github.com/shelljs/shelljs/pull/543) ([freitagbr](https://github.com/freitagbr))
|
|
352
|
+
- chore: remove v0.10 from Travis CI [\#540](https://github.com/shelljs/shelljs/pull/540) ([nfischer](https://github.com/nfischer))
|
|
353
|
+
- chore: add Node v7 for CI [\#539](https://github.com/shelljs/shelljs/pull/539) ([nfischer](https://github.com/nfischer))
|
|
354
|
+
|
|
355
|
+
## [v0.7.5](https://github.com/shelljs/shelljs/tree/v0.7.5) (2016-10-27)
|
|
356
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.4...v0.7.5)
|
|
357
|
+
|
|
358
|
+
**Closed issues:**
|
|
359
|
+
|
|
360
|
+
- Project objectives: there is some higher goal to achieve? [\#533](https://github.com/shelljs/shelljs/issues/533)
|
|
361
|
+
- fs.existsSync is un-deprecated [\#531](https://github.com/shelljs/shelljs/issues/531)
|
|
362
|
+
- Inadvertent breaking change to shell.test\(\) [\#529](https://github.com/shelljs/shelljs/issues/529)
|
|
363
|
+
- Add -u flag support for cp [\#526](https://github.com/shelljs/shelljs/issues/526)
|
|
364
|
+
- API request: allow `plugin.error\(\)` to take an options parameter [\#522](https://github.com/shelljs/shelljs/issues/522)
|
|
365
|
+
- FS Real Path error thrown when requiring shelljs [\#521](https://github.com/shelljs/shelljs/issues/521)
|
|
366
|
+
- Question: passing code via pipe? [\#520](https://github.com/shelljs/shelljs/issues/520)
|
|
367
|
+
- The performance in `cp` is different between `0.6.0` and `0.7.4` [\#517](https://github.com/shelljs/shelljs/issues/517)
|
|
368
|
+
- ShellJS in Electron package don't find ffmpeg anymore [\#516](https://github.com/shelljs/shelljs/issues/516)
|
|
369
|
+
- Exec issues with string option introduced in 0.7.4 [\#515](https://github.com/shelljs/shelljs/issues/515)
|
|
370
|
+
- \[ Feature \] SSH command [\#435](https://github.com/shelljs/shelljs/issues/435)
|
|
371
|
+
|
|
372
|
+
**Merged pull requests:**
|
|
373
|
+
|
|
374
|
+
- feat: plugin.error\(\) takes an options parameter [\#535](https://github.com/shelljs/shelljs/pull/535) ([nfischer](https://github.com/nfischer))
|
|
375
|
+
- Revert "refactor: replace fs.existsSync" fixes\(\#531\) [\#532](https://github.com/shelljs/shelljs/pull/532) ([gyandeeps](https://github.com/gyandeeps))
|
|
376
|
+
- Fix: Remove default glob from shell.test \(fixes \#529\) [\#530](https://github.com/shelljs/shelljs/pull/530) ([gyandeeps](https://github.com/gyandeeps))
|
|
377
|
+
- feat: cp -u option [\#527](https://github.com/shelljs/shelljs/pull/527) ([nfischer](https://github.com/nfischer))
|
|
378
|
+
- chore: add downloads per month on README [\#513](https://github.com/shelljs/shelljs/pull/513) ([nfischer](https://github.com/nfischer))
|
|
379
|
+
|
|
380
|
+
## [v0.7.4](https://github.com/shelljs/shelljs/tree/v0.7.4) (2016-08-26)
|
|
381
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.3...v0.7.4)
|
|
382
|
+
|
|
383
|
+
**Closed issues:**
|
|
384
|
+
|
|
385
|
+
- fix: echo -e should not print "-e" [\#510](https://github.com/shelljs/shelljs/issues/510)
|
|
386
|
+
- Wrong method signature in doc [\#498](https://github.com/shelljs/shelljs/issues/498)
|
|
387
|
+
- readFromPipe should be a function with no arguments [\#485](https://github.com/shelljs/shelljs/issues/485)
|
|
388
|
+
- TypeError: Cannot read property 'toString' of undefined [\#471](https://github.com/shelljs/shelljs/issues/471)
|
|
389
|
+
|
|
390
|
+
**Merged pull requests:**
|
|
391
|
+
|
|
392
|
+
- fix: echo supports -e option properly [\#511](https://github.com/shelljs/shelljs/pull/511) ([nfischer](https://github.com/nfischer))
|
|
393
|
+
- refactor: replace fs.existsSync [\#509](https://github.com/shelljs/shelljs/pull/509) ([nfischer](https://github.com/nfischer))
|
|
394
|
+
- refactor: readFromPipe\(\) requires no arguments [\#506](https://github.com/shelljs/shelljs/pull/506) ([nfischer](https://github.com/nfischer))
|
|
395
|
+
- chore: switch to eslint [\#504](https://github.com/shelljs/shelljs/pull/504) ([nfischer](https://github.com/nfischer))
|
|
396
|
+
- feat: add overWrite option for commands [\#503](https://github.com/shelljs/shelljs/pull/503) ([nfischer](https://github.com/nfischer))
|
|
397
|
+
- chore: update issue template [\#502](https://github.com/shelljs/shelljs/pull/502) ([nfischer](https://github.com/nfischer))
|
|
398
|
+
- fixed head/tail readme [\#499](https://github.com/shelljs/shelljs/pull/499) ([charlesread](https://github.com/charlesread))
|
|
399
|
+
|
|
400
|
+
## [v0.7.3](https://github.com/shelljs/shelljs/tree/v0.7.3) (2016-07-27)
|
|
401
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.2...v0.7.3)
|
|
402
|
+
|
|
403
|
+
**Closed issues:**
|
|
404
|
+
|
|
405
|
+
- expose execSync [\#494](https://github.com/shelljs/shelljs/issues/494)
|
|
406
|
+
- Add a way to create commands that can receive from a pipe without being standalone commands [\#487](https://github.com/shelljs/shelljs/issues/487)
|
|
407
|
+
- cp -r breaks when the directory contains a softlink [\#193](https://github.com/shelljs/shelljs/issues/193)
|
|
408
|
+
- Redirect output to file fails [\#60](https://github.com/shelljs/shelljs/issues/60)
|
|
409
|
+
- We need sed -n ? [\#38](https://github.com/shelljs/shelljs/issues/38)
|
|
410
|
+
|
|
411
|
+
**Merged pull requests:**
|
|
412
|
+
|
|
413
|
+
- refactor: allow pipeOnly commands \(methods on ShellStrings\) [\#493](https://github.com/shelljs/shelljs/pull/493) ([nfischer](https://github.com/nfischer))
|
|
414
|
+
- refactor: glob by default for commands [\#492](https://github.com/shelljs/shelljs/pull/492) ([nfischer](https://github.com/nfischer))
|
|
415
|
+
- refactor: switch from notUnix to unix in wrap\(\) [\#491](https://github.com/shelljs/shelljs/pull/491) ([nfischer](https://github.com/nfischer))
|
|
416
|
+
- refactor: switch common.extend\(\) to Object.assign ponyfill [\#490](https://github.com/shelljs/shelljs/pull/490) ([nfischer](https://github.com/nfischer))
|
|
417
|
+
- fix: conflicting options now properly override each other [\#489](https://github.com/shelljs/shelljs/pull/489) ([nfischer](https://github.com/nfischer))
|
|
418
|
+
- refactor: expose plugin utils & add initial tests [\#484](https://github.com/shelljs/shelljs/pull/484) ([nfischer](https://github.com/nfischer))
|
|
419
|
+
|
|
420
|
+
## [v0.7.2](https://github.com/shelljs/shelljs/tree/v0.7.2) (2016-07-25)
|
|
421
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.1...v0.7.2)
|
|
422
|
+
|
|
423
|
+
**Closed issues:**
|
|
424
|
+
|
|
425
|
+
- shelljs should not kill process if node call throws exception [\#473](https://github.com/shelljs/shelljs/issues/473)
|
|
426
|
+
- `cp` work incorrectly when folder name contains '@' [\#463](https://github.com/shelljs/shelljs/issues/463)
|
|
427
|
+
- Something went wrong [\#158](https://github.com/shelljs/shelljs/issues/158)
|
|
428
|
+
|
|
429
|
+
**Merged pull requests:**
|
|
430
|
+
|
|
431
|
+
- fix: resolve a cylcic-dependency problem [\#482](https://github.com/shelljs/shelljs/pull/482) ([nfischer](https://github.com/nfischer))
|
|
432
|
+
- refactor: add wrapOutput option to auto-ShellString-ify command output [\#481](https://github.com/shelljs/shelljs/pull/481) ([nfischer](https://github.com/nfischer))
|
|
433
|
+
- refactor: move option parsing into common.wrap\(\) [\#479](https://github.com/shelljs/shelljs/pull/479) ([nfischer](https://github.com/nfischer))
|
|
434
|
+
- refactor: hook new uniq\(\) command using new format [\#478](https://github.com/shelljs/shelljs/pull/478) ([nfischer](https://github.com/nfischer))
|
|
435
|
+
- Fix mkdir malformed path [\#477](https://github.com/shelljs/shelljs/pull/477) ([nfischer](https://github.com/nfischer))
|
|
436
|
+
- fix: mkdir for invalid perms does not kill process [\#474](https://github.com/shelljs/shelljs/pull/474) ([nfischer](https://github.com/nfischer))
|
|
437
|
+
- feat\(command\): new command: uniq\(\) [\#453](https://github.com/shelljs/shelljs/pull/453) ([joshi-sh](https://github.com/joshi-sh))
|
|
438
|
+
|
|
439
|
+
## [v0.7.1](https://github.com/shelljs/shelljs/tree/v0.7.1) (2016-07-22)
|
|
440
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.0...v0.7.1)
|
|
441
|
+
|
|
442
|
+
**Closed issues:**
|
|
443
|
+
|
|
444
|
+
- cp -n doesn't work correctly [\#465](https://github.com/shelljs/shelljs/issues/465)
|
|
445
|
+
- how can i run sudo apt-get install xtodotool by your plugin? [\#448](https://github.com/shelljs/shelljs/issues/448)
|
|
446
|
+
- shell.js grep: internal error, Invalid regular expression [\#447](https://github.com/shelljs/shelljs/issues/447)
|
|
447
|
+
- Stdout is empty on Git log command [\#439](https://github.com/shelljs/shelljs/issues/439)
|
|
448
|
+
- Cannot read toString of null when using execSync [\#415](https://github.com/shelljs/shelljs/issues/415)
|
|
449
|
+
- cp -R dir/ target fails to copy hidden files in dir [\#140](https://github.com/shelljs/shelljs/issues/140)
|
|
450
|
+
- \#mv Won't Work Across Disks [\#1](https://github.com/shelljs/shelljs/issues/1)
|
|
451
|
+
|
|
452
|
+
**Merged pull requests:**
|
|
453
|
+
|
|
454
|
+
- refactor: commands now register themselves [\#475](https://github.com/shelljs/shelljs/pull/475) ([nfischer](https://github.com/nfischer))
|
|
455
|
+
- chore: switch to shields.io, and add npm badge [\#470](https://github.com/shelljs/shelljs/pull/470) ([nfischer](https://github.com/nfischer))
|
|
456
|
+
- fix\(cp\): -n option no longer raises error [\#466](https://github.com/shelljs/shelljs/pull/466) ([nfischer](https://github.com/nfischer))
|
|
457
|
+
- refactor: expose pipe-ability to command configuration [\#464](https://github.com/shelljs/shelljs/pull/464) ([nfischer](https://github.com/nfischer))
|
|
458
|
+
- fix\(mv\): works across partitions [\#461](https://github.com/shelljs/shelljs/pull/461) ([nfischer](https://github.com/nfischer))
|
|
459
|
+
- chore: switch to shelljs-changelog [\#460](https://github.com/shelljs/shelljs/pull/460) ([nfischer](https://github.com/nfischer))
|
|
460
|
+
- chore: update release process [\#459](https://github.com/shelljs/shelljs/pull/459) ([nfischer](https://github.com/nfischer))
|
|
461
|
+
- chore: revert depreciate shelljs/make \(\#431\) [\#458](https://github.com/shelljs/shelljs/pull/458) ([zephraph](https://github.com/zephraph))
|
|
462
|
+
- chore: clarify message for when docs are not generated [\#457](https://github.com/shelljs/shelljs/pull/457) ([nfischer](https://github.com/nfischer))
|
|
463
|
+
- chore\(gendocs\): add `npm run gendocs` command [\#455](https://github.com/shelljs/shelljs/pull/455) ([nfischer](https://github.com/nfischer))
|
|
464
|
+
- chore: update jshint and move it to an npm script [\#454](https://github.com/shelljs/shelljs/pull/454) ([nfischer](https://github.com/nfischer))
|
|
465
|
+
- test\(ls\): add case for trailing slash on dir name [\#450](https://github.com/shelljs/shelljs/pull/450) ([nfischer](https://github.com/nfischer))
|
|
466
|
+
- docs\(exec\): explicitly mention the `shell` option [\#449](https://github.com/shelljs/shelljs/pull/449) ([nfischer](https://github.com/nfischer))
|
|
467
|
+
- chore: setup changelog [\#443](https://github.com/shelljs/shelljs/pull/443) ([levithomason](https://github.com/levithomason))
|
|
468
|
+
- docs: comment code better to help contributors [\#437](https://github.com/shelljs/shelljs/pull/437) ([nfischer](https://github.com/nfischer))
|
|
469
|
+
- chore\(CI\): update appveyor [\#436](https://github.com/shelljs/shelljs/pull/436) ([nfischer](https://github.com/nfischer))
|
|
470
|
+
- chore: test against node v6 [\#433](https://github.com/shelljs/shelljs/pull/433) ([nfischer](https://github.com/nfischer))
|
|
471
|
+
- docs: warn that README contains newest features [\#410](https://github.com/shelljs/shelljs/pull/410) ([nfischer](https://github.com/nfischer))
|
|
472
|
+
|
|
473
|
+
## [v0.7.0](https://github.com/shelljs/shelljs/tree/v0.7.0) (2016-04-25)
|
|
474
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.6.0...v0.7.0)
|
|
475
|
+
|
|
476
|
+
**Closed issues:**
|
|
477
|
+
|
|
478
|
+
- exec\('nohup node some.js &'\) [\#426](https://github.com/shelljs/shelljs/issues/426)
|
|
479
|
+
- shelljs Breaks SemVer for Alpha and Pre-Release Versions [\#390](https://github.com/shelljs/shelljs/issues/390)
|
|
480
|
+
- Copy not accepting source end with wildcards \* when using -r on v0.6.0 [\#389](https://github.com/shelljs/shelljs/issues/389)
|
|
481
|
+
- Support globbing in `shjs` [\#388](https://github.com/shelljs/shelljs/issues/388)
|
|
482
|
+
- Refactor more commands to return ShellString [\#373](https://github.com/shelljs/shelljs/issues/373)
|
|
483
|
+
- ln\('-sf', './', '\<destination\>'\) is not linking the right folder [\#363](https://github.com/shelljs/shelljs/issues/363)
|
|
484
|
+
- v0.6.0 - shell.cp\('r', '/foo/\*, '/bar'\) fails with /foo/\* no such file or directory [\#342](https://github.com/shelljs/shelljs/issues/342)
|
|
485
|
+
- Add documentup as a webhook [\#327](https://github.com/shelljs/shelljs/issues/327)
|
|
486
|
+
- Dir glob breaks when in the middle of path [\#245](https://github.com/shelljs/shelljs/issues/245)
|
|
487
|
+
- could you switch off wiki page? [\#233](https://github.com/shelljs/shelljs/issues/233)
|
|
488
|
+
- ls globbing does not behave like shell, consider using glob.sync [\#225](https://github.com/shelljs/shelljs/issues/225)
|
|
489
|
+
- Cannot run shell.exec\('heroku config:push'\) -- just hangs [\#218](https://github.com/shelljs/shelljs/issues/218)
|
|
490
|
+
- `cp` does not overwrite files by default [\#210](https://github.com/shelljs/shelljs/issues/210)
|
|
491
|
+
- exec failed to return [\#208](https://github.com/shelljs/shelljs/issues/208)
|
|
492
|
+
- CLI Version [\#202](https://github.com/shelljs/shelljs/issues/202)
|
|
493
|
+
- Bracket expansion not working [\#176](https://github.com/shelljs/shelljs/issues/176)
|
|
494
|
+
- "exec" causes LiveScript interpreter \(lsc\) to hang [\#160](https://github.com/shelljs/shelljs/issues/160)
|
|
495
|
+
- Don't modify string prototype [\#159](https://github.com/shelljs/shelljs/issues/159)
|
|
496
|
+
- `exec\(...\).to\(file\)` should work [\#154](https://github.com/shelljs/shelljs/issues/154)
|
|
497
|
+
- Can't install shelljs locally instead of globally [\#136](https://github.com/shelljs/shelljs/issues/136)
|
|
498
|
+
- shelljs and node 0.10.28 [\#125](https://github.com/shelljs/shelljs/issues/125)
|
|
499
|
+
- Use case for global installed shelljs [\#123](https://github.com/shelljs/shelljs/issues/123)
|
|
500
|
+
- Only get stdout from `exec` [\#92](https://github.com/shelljs/shelljs/issues/92)
|
|
501
|
+
- What about other commands? [\#90](https://github.com/shelljs/shelljs/issues/90)
|
|
502
|
+
- Flesh out example of exit\(\) [\#73](https://github.com/shelljs/shelljs/issues/73)
|
|
503
|
+
- exec doesn't work with qualified paths on windows [\#41](https://github.com/shelljs/shelljs/issues/41)
|
|
504
|
+
- exec does not working in mingw bash in windows [\#17](https://github.com/shelljs/shelljs/issues/17)
|
|
505
|
+
- Add support for cp -P option [\#413](https://github.com/shelljs/shelljs/issues/413)
|
|
506
|
+
- cp -L: Incorrect behavior for symlinks to regular files [\#407](https://github.com/shelljs/shelljs/issues/407)
|
|
507
|
+
- Edit the docs to emphasize ShellStrings and Pipes [\#398](https://github.com/shelljs/shelljs/issues/398)
|
|
508
|
+
- Error message isn't always printed [\#372](https://github.com/shelljs/shelljs/issues/372)
|
|
509
|
+
- Standardize command output [\#356](https://github.com/shelljs/shelljs/issues/356)
|
|
510
|
+
- exec\(\) doesn't clean up all temp files [\#353](https://github.com/shelljs/shelljs/issues/353)
|
|
511
|
+
- Document that exec\(\) options don't work on early versions of node [\#350](https://github.com/shelljs/shelljs/issues/350)
|
|
512
|
+
- Add -f option to set\(\) [\#344](https://github.com/shelljs/shelljs/issues/344)
|
|
513
|
+
- Glob commands by default [\#343](https://github.com/shelljs/shelljs/issues/343)
|
|
514
|
+
- rm -rf incorrect behaviour [\#332](https://github.com/shelljs/shelljs/issues/332)
|
|
515
|
+
- Switch `exec\(\)` to use bash by default [\#281](https://github.com/shelljs/shelljs/issues/281)
|
|
516
|
+
- pipe to proc [\#148](https://github.com/shelljs/shelljs/issues/148)
|
|
517
|
+
- shell builtin [\#138](https://github.com/shelljs/shelljs/issues/138)
|
|
518
|
+
- add timeout option for exec [\#132](https://github.com/shelljs/shelljs/issues/132)
|
|
519
|
+
- shelljs cp handling symlinks badly [\#69](https://github.com/shelljs/shelljs/issues/69)
|
|
520
|
+
|
|
521
|
+
**Merged pull requests:**
|
|
522
|
+
|
|
523
|
+
- chore: add "Team" section to README [\#423](https://github.com/shelljs/shelljs/pull/423) ([nfischer](https://github.com/nfischer))
|
|
524
|
+
- Contributing guidelines [\#422](https://github.com/shelljs/shelljs/pull/422) ([nfischer](https://github.com/nfischer))
|
|
525
|
+
- feat\(glob\): expose config.globOptions. [\#400](https://github.com/shelljs/shelljs/pull/400) ([nfischer](https://github.com/nfischer))
|
|
526
|
+
- Add shelljs as a keyword in package.json [\#393](https://github.com/shelljs/shelljs/pull/393) ([nfischer](https://github.com/nfischer))
|
|
527
|
+
- docs: add link to wiki page [\#392](https://github.com/shelljs/shelljs/pull/392) ([nfischer](https://github.com/nfischer))
|
|
528
|
+
- refactor\(cd\): use process.env.OLDPWD to store previous dir [\#383](https://github.com/shelljs/shelljs/pull/383) ([nfischer](https://github.com/nfischer))
|
|
529
|
+
- chore\(appveyor\): add in node 4 for appveyor [\#381](https://github.com/shelljs/shelljs/pull/381) ([nfischer](https://github.com/nfischer))
|
|
530
|
+
- Add Cash cross-reference [\#375](https://github.com/shelljs/shelljs/pull/375) ([dthree](https://github.com/dthree))
|
|
531
|
+
- Ignore gitattributes from npm package [\#361](https://github.com/shelljs/shelljs/pull/361) ([nfischer](https://github.com/nfischer))
|
|
532
|
+
- Consistently use LF line endings [\#355](https://github.com/shelljs/shelljs/pull/355) ([TimothyGu](https://github.com/TimothyGu))
|
|
533
|
+
- Release v0.7.0 [\#429](https://github.com/shelljs/shelljs/pull/429) ([nfischer](https://github.com/nfischer))
|
|
534
|
+
- fix: null is no longer confused for an object [\#428](https://github.com/shelljs/shelljs/pull/428) ([nfischer](https://github.com/nfischer))
|
|
535
|
+
- fix\(ls\): no trailing newline for empty directories [\#425](https://github.com/shelljs/shelljs/pull/425) ([nfischer](https://github.com/nfischer))
|
|
536
|
+
- feat\(cp\): -P option, plus better handling of symlinks [\#421](https://github.com/shelljs/shelljs/pull/421) ([nfischer](https://github.com/nfischer))
|
|
537
|
+
- docs\(exec\): fix docs about exec return type [\#419](https://github.com/shelljs/shelljs/pull/419) ([nfischer](https://github.com/nfischer))
|
|
538
|
+
- docs\(error\): deprecate relying on string value [\#418](https://github.com/shelljs/shelljs/pull/418) ([nfischer](https://github.com/nfischer))
|
|
539
|
+
- fix: error message now printed for fatal failures [\#417](https://github.com/shelljs/shelljs/pull/417) ([nfischer](https://github.com/nfischer))
|
|
540
|
+
- issue-407: Add regular files unit tests and fix symlink copy behavior [\#409](https://github.com/shelljs/shelljs/pull/409) ([charlesverge](https://github.com/charlesverge))
|
|
541
|
+
- refactor\(rm\): Remove duplicate code [\#408](https://github.com/shelljs/shelljs/pull/408) ([nfischer](https://github.com/nfischer))
|
|
542
|
+
- docs: wildcards for all commands, other docs cleanups [\#404](https://github.com/shelljs/shelljs/pull/404) ([nfischer](https://github.com/nfischer))
|
|
543
|
+
- test\(rm\): add tests to prevent a future regression [\#403](https://github.com/shelljs/shelljs/pull/403) ([nfischer](https://github.com/nfischer))
|
|
544
|
+
- refactor\(string\): modify string protoype, but only for shelljs/global [\#401](https://github.com/shelljs/shelljs/pull/401) ([nfischer](https://github.com/nfischer))
|
|
545
|
+
- feat: adding error codes to ShellJS [\#394](https://github.com/shelljs/shelljs/pull/394) ([nfischer](https://github.com/nfischer))
|
|
546
|
+
- feature: use rechoir [\#384](https://github.com/shelljs/shelljs/pull/384) ([nfischer](https://github.com/nfischer))
|
|
547
|
+
- refactor\(cp\): clean up code and fix \#376 [\#380](https://github.com/shelljs/shelljs/pull/380) ([nfischer](https://github.com/nfischer))
|
|
548
|
+
- New commands: sort\(\), head\(\), and tail\(\) [\#379](https://github.com/shelljs/shelljs/pull/379) ([nfischer](https://github.com/nfischer))
|
|
549
|
+
- Add unit tests to prevent regression \(see \#376\) [\#378](https://github.com/shelljs/shelljs/pull/378) ([nfischer](https://github.com/nfischer))
|
|
550
|
+
- feat\(pipe\): add support for pipes between commands [\#370](https://github.com/shelljs/shelljs/pull/370) ([nfischer](https://github.com/nfischer))
|
|
551
|
+
- refactor\(ls\): greatly simplify ls implimentation [\#369](https://github.com/shelljs/shelljs/pull/369) ([ariporad](https://github.com/ariporad))
|
|
552
|
+
- chore: drop node v0.10 support [\#368](https://github.com/shelljs/shelljs/pull/368) ([ariporad](https://github.com/ariporad))
|
|
553
|
+
- perf\(cd\): only run `stat` once [\#367](https://github.com/shelljs/shelljs/pull/367) ([ariporad](https://github.com/ariporad))
|
|
554
|
+
- fix\(exec\): properly handles paths with spaces and quotes [\#365](https://github.com/shelljs/shelljs/pull/365) ([nfischer](https://github.com/nfischer))
|
|
555
|
+
- test\(ln\): add tests for linking to cwd [\#364](https://github.com/shelljs/shelljs/pull/364) ([nfischer](https://github.com/nfischer))
|
|
556
|
+
- fix\(verbose\): verbose-style logging is consistent [\#362](https://github.com/shelljs/shelljs/pull/362) ([nfischer](https://github.com/nfischer))
|
|
557
|
+
- Refactor shellstring [\#360](https://github.com/shelljs/shelljs/pull/360) ([nfischer](https://github.com/nfischer))
|
|
558
|
+
- feat\(glob\): use glob module for globbing [\#359](https://github.com/shelljs/shelljs/pull/359) ([nfischer](https://github.com/nfischer))
|
|
559
|
+
- feat\(set\): add -f option to disable globbing [\#358](https://github.com/shelljs/shelljs/pull/358) ([nfischer](https://github.com/nfischer))
|
|
560
|
+
- config.fatal now throws an exception [\#357](https://github.com/shelljs/shelljs/pull/357) ([jrmclaurin](https://github.com/jrmclaurin))
|
|
561
|
+
- fix\(exec\): temp files are now cleaned up [\#354](https://github.com/shelljs/shelljs/pull/354) ([nfischer](https://github.com/nfischer))
|
|
562
|
+
- feat\(glob\): glob support for \(almost\) all commands [\#352](https://github.com/shelljs/shelljs/pull/352) ([nfischer](https://github.com/nfischer))
|
|
563
|
+
- feat\(grep\): add -l option [\#349](https://github.com/shelljs/shelljs/pull/349) ([nfischer](https://github.com/nfischer))
|
|
564
|
+
- fix\(exec\): now actually supports shell option [\#348](https://github.com/shelljs/shelljs/pull/348) ([nfischer](https://github.com/nfischer))
|
|
565
|
+
- feat\(touch\): supports multiple files [\#346](https://github.com/shelljs/shelljs/pull/346) ([nfischer](https://github.com/nfischer))
|
|
566
|
+
|
|
567
|
+
## [v0.6.0](https://github.com/shelljs/shelljs/tree/v0.6.0) (2016-02-05)
|
|
568
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.3...v0.6.0)
|
|
569
|
+
|
|
570
|
+
**Closed issues:**
|
|
571
|
+
|
|
572
|
+
- option not recognized [\#334](https://github.com/shelljs/shelljs/issues/334)
|
|
573
|
+
- Feature request: Metadata with `ls` [\#323](https://github.com/shelljs/shelljs/issues/323)
|
|
574
|
+
- Gen-docs is broken [\#309](https://github.com/shelljs/shelljs/issues/309)
|
|
575
|
+
- `link -s` is broken for files on Windows [\#301](https://github.com/shelljs/shelljs/issues/301)
|
|
576
|
+
- Shelljs quits unexpectedly: [\#300](https://github.com/shelljs/shelljs/issues/300)
|
|
577
|
+
- Failing tests on Windows [\#296](https://github.com/shelljs/shelljs/issues/296)
|
|
578
|
+
- run-tests.js is broken for cmd.exe [\#294](https://github.com/shelljs/shelljs/issues/294)
|
|
579
|
+
- Support echo-ing environment variables [\#291](https://github.com/shelljs/shelljs/issues/291)
|
|
580
|
+
- Add Windows CI [\#287](https://github.com/shelljs/shelljs/issues/287)
|
|
581
|
+
- Add tests for the shjs utility [\#280](https://github.com/shelljs/shelljs/issues/280)
|
|
582
|
+
- Allow shjs utility to infer the extension for "filename." [\#278](https://github.com/shelljs/shelljs/issues/278)
|
|
583
|
+
- Ability to read the stdout buffer line-by-line [\#277](https://github.com/shelljs/shelljs/issues/277)
|
|
584
|
+
- Poor output for commands with multiple errors [\#267](https://github.com/shelljs/shelljs/issues/267)
|
|
585
|
+
- Travis ci build status says "unknown" [\#266](https://github.com/shelljs/shelljs/issues/266)
|
|
586
|
+
- wild card characters in filename not working as expected [\#262](https://github.com/shelljs/shelljs/issues/262)
|
|
587
|
+
- shell.exec - read internal variable [\#260](https://github.com/shelljs/shelljs/issues/260)
|
|
588
|
+
- cp and rename directory with -r doesn't match unix behavior [\#256](https://github.com/shelljs/shelljs/issues/256)
|
|
589
|
+
- console.log.apply throwing TypeError: Illegal Invocation [\#255](https://github.com/shelljs/shelljs/issues/255)
|
|
590
|
+
- How to exit on first error [\#253](https://github.com/shelljs/shelljs/issues/253)
|
|
591
|
+
- why not support set 'cwd' when invoke execAsync ? [\#250](https://github.com/shelljs/shelljs/issues/250)
|
|
592
|
+
- Not possible to check the failure of cd? [\#247](https://github.com/shelljs/shelljs/issues/247)
|
|
593
|
+
- By default shelljs runs command in root [\#246](https://github.com/shelljs/shelljs/issues/246)
|
|
594
|
+
- /usr/bin/env: node: No such file or directory [\#243](https://github.com/shelljs/shelljs/issues/243)
|
|
595
|
+
- "Which" command not working properly on Windows Platform. [\#238](https://github.com/shelljs/shelljs/issues/238)
|
|
596
|
+
- Arguments [\#237](https://github.com/shelljs/shelljs/issues/237)
|
|
597
|
+
- sed\(\) should accept multiple file arguments [\#231](https://github.com/shelljs/shelljs/issues/231)
|
|
598
|
+
- shelljs.exec\('aaa && bbb'\) blocks [\#229](https://github.com/shelljs/shelljs/issues/229)
|
|
599
|
+
- Consider creating a GitHub Organization with more maintainers [\#223](https://github.com/shelljs/shelljs/issues/223)
|
|
600
|
+
- \[idea\] Add chmodr function. [\#219](https://github.com/shelljs/shelljs/issues/219)
|
|
601
|
+
- Execute a file [\#211](https://github.com/shelljs/shelljs/issues/211)
|
|
602
|
+
- Where is standard error going to? [\#209](https://github.com/shelljs/shelljs/issues/209)
|
|
603
|
+
- boolean return value for string.to\(\) [\#205](https://github.com/shelljs/shelljs/issues/205)
|
|
604
|
+
- `common.error` doesn't throw [\#199](https://github.com/shelljs/shelljs/issues/199)
|
|
605
|
+
- Problems with exec \(sync\) on 0.12/io.js [\#197](https://github.com/shelljs/shelljs/issues/197)
|
|
606
|
+
- cp --update flag [\#172](https://github.com/shelljs/shelljs/issues/172)
|
|
607
|
+
- Is there a way to suppress pushd/popd output? [\#171](https://github.com/shelljs/shelljs/issues/171)
|
|
608
|
+
- Cannot recursively list all \*.js files [\#162](https://github.com/shelljs/shelljs/issues/162)
|
|
609
|
+
- exec\(\) breaks if executed in a deleted directory [\#157](https://github.com/shelljs/shelljs/issues/157)
|
|
610
|
+
- shjs command always exits with zero code [\#133](https://github.com/shelljs/shelljs/issues/133)
|
|
611
|
+
- touch command [\#122](https://github.com/shelljs/shelljs/issues/122)
|
|
612
|
+
- Symbolic links are broken! [\#100](https://github.com/shelljs/shelljs/issues/100)
|
|
613
|
+
- interpret `--` as stdin [\#55](https://github.com/shelljs/shelljs/issues/55)
|
|
614
|
+
- Error ENOTEMPTY when deleting a directory recursively. [\#49](https://github.com/shelljs/shelljs/issues/49)
|
|
615
|
+
- Cross-platform way to add to PATH [\#32](https://github.com/shelljs/shelljs/issues/32)
|
|
616
|
+
- `mv` fails on block, character, fifo [\#25](https://github.com/shelljs/shelljs/issues/25)
|
|
617
|
+
- ls -l [\#22](https://github.com/shelljs/shelljs/issues/22)
|
|
618
|
+
|
|
619
|
+
**Merged pull requests:**
|
|
620
|
+
|
|
621
|
+
- feat\(set\): add new set\(\) command [\#329](https://github.com/shelljs/shelljs/pull/329) ([nfischer](https://github.com/nfischer))
|
|
622
|
+
- Fix symlinking on Windows [\#322](https://github.com/shelljs/shelljs/pull/322) ([BYK](https://github.com/BYK))
|
|
623
|
+
- Rewrite .gitignore to be more comprehensive [\#321](https://github.com/shelljs/shelljs/pull/321) ([BYK](https://github.com/BYK))
|
|
624
|
+
- chore\(gitter/travis\): add gitter webhook to travis [\#313](https://github.com/shelljs/shelljs/pull/313) ([ariporad](https://github.com/ariporad))
|
|
625
|
+
- chore\(LGTM\): add LGTM config files [\#312](https://github.com/shelljs/shelljs/pull/312) ([ariporad](https://github.com/ariporad))
|
|
626
|
+
- feat\(ls\): add -d flag to ls\(\) [\#311](https://github.com/shelljs/shelljs/pull/311) ([nfischer](https://github.com/nfischer))
|
|
627
|
+
- fix\(gen-docs\): fix issue where docs are generated wrong [\#310](https://github.com/shelljs/shelljs/pull/310) ([nfischer](https://github.com/nfischer))
|
|
628
|
+
- chore\(package\): remove v0.8 from engines list [\#308](https://github.com/shelljs/shelljs/pull/308) ([nfischer](https://github.com/nfischer))
|
|
629
|
+
- travis: Mark as not using `sudo` and do not test 0.11 [\#307](https://github.com/shelljs/shelljs/pull/307) ([TimothyGu](https://github.com/TimothyGu))
|
|
630
|
+
- fix: jshint works on Windows [\#295](https://github.com/shelljs/shelljs/pull/295) ([nfischer](https://github.com/nfischer))
|
|
631
|
+
- feat: add tilde expansion to expand\(\) [\#293](https://github.com/shelljs/shelljs/pull/293) ([nfischer](https://github.com/nfischer))
|
|
632
|
+
- style: make docs more consistent [\#292](https://github.com/shelljs/shelljs/pull/292) ([nfischer](https://github.com/nfischer))
|
|
633
|
+
- update `exec` docs to match implemented behaviour [\#289](https://github.com/shelljs/shelljs/pull/289) ([vise890](https://github.com/vise890))
|
|
634
|
+
- chore: update github URL in package.json [\#288](https://github.com/shelljs/shelljs/pull/288) ([nfischer](https://github.com/nfischer))
|
|
635
|
+
- docs\(spelling\): fix typo in source comment [\#285](https://github.com/shelljs/shelljs/pull/285) ([nfischer](https://github.com/nfischer))
|
|
636
|
+
- chore\(travis\): add OS X to Travis CI [\#283](https://github.com/shelljs/shelljs/pull/283) ([nfischer](https://github.com/nfischer))
|
|
637
|
+
- Don't do `console.log.apply\(this, ...\)`. [\#274](https://github.com/shelljs/shelljs/pull/274) ([ariporad](https://github.com/ariporad))
|
|
638
|
+
- Implementing cd\('-'\) to behave like Bash's "cd -" [\#273](https://github.com/shelljs/shelljs/pull/273) ([nfischer](https://github.com/nfischer))
|
|
639
|
+
- Fix cp to match unix behavior [\#271](https://github.com/shelljs/shelljs/pull/271) ([freitagbr](https://github.com/freitagbr))
|
|
640
|
+
- Commands that have multiple errors now produce cleaner log output [\#268](https://github.com/shelljs/shelljs/pull/268) ([nfischer](https://github.com/nfischer))
|
|
641
|
+
- Support exit code in shjs. [\#252](https://github.com/shelljs/shelljs/pull/252) ([bryce-gibson](https://github.com/bryce-gibson))
|
|
642
|
+
- add touch\(1\) [\#249](https://github.com/shelljs/shelljs/pull/249) ([blockloop](https://github.com/blockloop))
|
|
643
|
+
- Fix `os.tmpdir` bug [\#240](https://github.com/shelljs/shelljs/pull/240) ([BYK](https://github.com/BYK))
|
|
644
|
+
- Make sure Which\(\) on Windows platform always return the command with … [\#239](https://github.com/shelljs/shelljs/pull/239) ([TingluoHuang](https://github.com/TingluoHuang))
|
|
645
|
+
- Add target node.js \(iojs v1, v2, v3\) [\#230](https://github.com/shelljs/shelljs/pull/230) ([sanemat](https://github.com/sanemat))
|
|
646
|
+
- feat-multisymbolic + Support for directory entry \(capital X in chmod terms\) [\#228](https://github.com/shelljs/shelljs/pull/228) ([rezonant](https://github.com/rezonant))
|
|
647
|
+
- Fixes an issue with multi-symbolic mode specification \(ie a-rwx,u+rw\) [\#227](https://github.com/shelljs/shelljs/pull/227) ([rezonant](https://github.com/rezonant))
|
|
648
|
+
- Memoized the result of target invocation [\#216](https://github.com/shelljs/shelljs/pull/216) ([rizowski](https://github.com/rizowski))
|
|
649
|
+
- remove empty for loop and leaked i var [\#166](https://github.com/shelljs/shelljs/pull/166) ([ratbeard](https://github.com/ratbeard))
|
|
650
|
+
- Wrap script name in double quotes [\#135](https://github.com/shelljs/shelljs/pull/135) ([ndelitski](https://github.com/ndelitski))
|
|
651
|
+
- Fixed coffeescript syntax in top example [\#99](https://github.com/shelljs/shelljs/pull/99) ([maxnordlund](https://github.com/maxnordlund))
|
|
652
|
+
- fix\(touch\): enhance parseOptions and fix touch's -r flag [\#341](https://github.com/shelljs/shelljs/pull/341) ([nfischer](https://github.com/nfischer))
|
|
653
|
+
- chore\(.npmignore\): update npmignore [\#339](https://github.com/shelljs/shelljs/pull/339) ([ariporad](https://github.com/ariporad))
|
|
654
|
+
- Release v0.6.0 [\#338](https://github.com/shelljs/shelljs/pull/338) ([ariporad](https://github.com/ariporad))
|
|
655
|
+
- docs\(README\): remove coffeescript from README [\#337](https://github.com/shelljs/shelljs/pull/337) ([ariporad](https://github.com/ariporad))
|
|
656
|
+
- fix\(cp\): add -n option, make -f default behavior [\#336](https://github.com/shelljs/shelljs/pull/336) ([nfischer](https://github.com/nfischer))
|
|
657
|
+
- feat\(exec\): allow all exec options to pass through [\#335](https://github.com/shelljs/shelljs/pull/335) ([nfischer](https://github.com/nfischer))
|
|
658
|
+
- fix\(mv\): add -n option, make -f default behavior [\#328](https://github.com/shelljs/shelljs/pull/328) ([nfischer](https://github.com/nfischer))
|
|
659
|
+
- fix\(cat\): make behavior more like unix [\#326](https://github.com/shelljs/shelljs/pull/326) ([nfischer](https://github.com/nfischer))
|
|
660
|
+
- feat\(ls\): add -l option [\#324](https://github.com/shelljs/shelljs/pull/324) ([nfischer](https://github.com/nfischer))
|
|
661
|
+
- style\(test/which\): make test/which.js conform to the style guidelines [\#320](https://github.com/shelljs/shelljs/pull/320) ([ariporad](https://github.com/ariporad))
|
|
662
|
+
- chore\(appveyor\): add badge [\#316](https://github.com/shelljs/shelljs/pull/316) ([nfischer](https://github.com/nfischer))
|
|
663
|
+
- fix\(windows\): fix shjs commands for windows [\#315](https://github.com/shelljs/shelljs/pull/315) ([nfischer](https://github.com/nfischer))
|
|
664
|
+
- feat\(sed\): support multiple file names [\#314](https://github.com/shelljs/shelljs/pull/314) ([nfischer](https://github.com/nfischer))
|
|
665
|
+
- feat\(cd\): cd\(\) \(no args\) changes to home directory [\#306](https://github.com/shelljs/shelljs/pull/306) ([nfischer](https://github.com/nfischer))
|
|
666
|
+
- test\(shjs\): add tests for shjs [\#304](https://github.com/shelljs/shelljs/pull/304) ([ariporad](https://github.com/ariporad))
|
|
667
|
+
- fix: regexes are more consistent with sed and grep [\#303](https://github.com/shelljs/shelljs/pull/303) ([nfischer](https://github.com/nfischer))
|
|
668
|
+
- Add appveyor.yml config file [\#299](https://github.com/shelljs/shelljs/pull/299) ([nfischer](https://github.com/nfischer))
|
|
669
|
+
- Fix tests on Windows [\#297](https://github.com/shelljs/shelljs/pull/297) ([BYK](https://github.com/BYK))
|
|
670
|
+
- Search PATHEXT instead of 3 hardcoded values [\#290](https://github.com/shelljs/shelljs/pull/290) ([isiahmeadows](https://github.com/isiahmeadows))
|
|
671
|
+
- Fix relative symlinks [\#282](https://github.com/shelljs/shelljs/pull/282) ([freitagbr](https://github.com/freitagbr))
|
|
672
|
+
- Make to and toEnd chainable [\#276](https://github.com/shelljs/shelljs/pull/276) ([TimothyGu](https://github.com/TimothyGu))
|
|
673
|
+
|
|
674
|
+
## [v0.5.3](https://github.com/shelljs/shelljs/tree/v0.5.3) (2015-08-11)
|
|
675
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.2...v0.5.3)
|
|
676
|
+
|
|
677
|
+
**Merged pull requests:**
|
|
678
|
+
|
|
679
|
+
- Manually closing streams [\#222](https://github.com/shelljs/shelljs/pull/222) ([JulianLaval](https://github.com/JulianLaval))
|
|
680
|
+
|
|
681
|
+
## [v0.5.2](https://github.com/shelljs/shelljs/tree/v0.5.2) (2015-08-10)
|
|
682
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.1...v0.5.2)
|
|
683
|
+
|
|
684
|
+
**Closed issues:**
|
|
685
|
+
|
|
686
|
+
- Cannot run shell.exec [\#217](https://github.com/shelljs/shelljs/issues/217)
|
|
687
|
+
- write after end: internal error [\#206](https://github.com/shelljs/shelljs/issues/206)
|
|
688
|
+
|
|
689
|
+
**Merged pull requests:**
|
|
690
|
+
|
|
691
|
+
- Update README.md [\#221](https://github.com/shelljs/shelljs/pull/221) ([giosh94mhz](https://github.com/giosh94mhz))
|
|
692
|
+
- prevent internal error: write after end [\#214](https://github.com/shelljs/shelljs/pull/214) ([charlierudolph](https://github.com/charlierudolph))
|
|
693
|
+
|
|
694
|
+
## [v0.5.1](https://github.com/shelljs/shelljs/tree/v0.5.1) (2015-06-05)
|
|
695
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.0...v0.5.1)
|
|
696
|
+
|
|
697
|
+
**Closed issues:**
|
|
698
|
+
|
|
699
|
+
- cd into home directory [\#9](https://github.com/shelljs/shelljs/issues/9)
|
|
700
|
+
|
|
701
|
+
**Merged pull requests:**
|
|
702
|
+
|
|
703
|
+
- Fix issue \#49: Retry rmdirSync on Windows for up to 1 second if files still exist. [\#179](https://github.com/shelljs/shelljs/pull/179) ([andreialecu](https://github.com/andreialecu))
|
|
704
|
+
|
|
705
|
+
## [v0.5.0](https://github.com/shelljs/shelljs/tree/v0.5.0) (2015-05-19)
|
|
706
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.3.0...v0.5.0)
|
|
707
|
+
|
|
708
|
+
**Closed issues:**
|
|
709
|
+
|
|
710
|
+
- Enter text to prompt [\#203](https://github.com/shelljs/shelljs/issues/203)
|
|
711
|
+
- Find which shell is being used [\#195](https://github.com/shelljs/shelljs/issues/195)
|
|
712
|
+
- Pass command line params to the make tool [\#188](https://github.com/shelljs/shelljs/issues/188)
|
|
713
|
+
- Is it possible to call exec with a command containing new lines ? [\#177](https://github.com/shelljs/shelljs/issues/177)
|
|
714
|
+
- The installation would break on Windows 7 [\#161](https://github.com/shelljs/shelljs/issues/161)
|
|
715
|
+
- Q.ninvoke\(\) returns undefined [\#153](https://github.com/shelljs/shelljs/issues/153)
|
|
716
|
+
- installed shelljs on osx but reported error: npm ERR! 404 '%5B-g%5D' is not in the npm registry. [\#124](https://github.com/shelljs/shelljs/issues/124)
|
|
717
|
+
- "ln" not found \(OS X\) [\#106](https://github.com/shelljs/shelljs/issues/106)
|
|
718
|
+
- Using shelljs in a CLI app. [\#91](https://github.com/shelljs/shelljs/issues/91)
|
|
719
|
+
|
|
720
|
+
**Merged pull requests:**
|
|
721
|
+
|
|
722
|
+
- Breaking: Allow -- as args separators \(fixes \#188\) [\#207](https://github.com/shelljs/shelljs/pull/207) ([nzakas](https://github.com/nzakas))
|
|
723
|
+
- Update .travis.yml [\#190](https://github.com/shelljs/shelljs/pull/190) ([arturadib](https://github.com/arturadib))
|
|
724
|
+
- Use new child\_process.execSync instead of busywaiting [\#189](https://github.com/shelljs/shelljs/pull/189) ([madd512](https://github.com/madd512))
|
|
725
|
+
- Update README.md: explains how to access "config" [\#145](https://github.com/shelljs/shelljs/pull/145) ([kerphi](https://github.com/kerphi))
|
|
726
|
+
- Fix to set state.error before throw the exception [\#120](https://github.com/shelljs/shelljs/pull/120) ([abdul-martinez](https://github.com/abdul-martinez))
|
|
727
|
+
- Add -l and -s support to grep. [\#116](https://github.com/shelljs/shelljs/pull/116) ([idearat](https://github.com/idearat))
|
|
728
|
+
|
|
729
|
+
## [v0.3.0](https://github.com/shelljs/shelljs/tree/v0.3.0) (2014-05-08)
|
|
730
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.6...v0.3.0)
|
|
731
|
+
|
|
732
|
+
**Closed issues:**
|
|
733
|
+
|
|
734
|
+
- grep\(\) should fully support globing [\#118](https://github.com/shelljs/shelljs/issues/118)
|
|
735
|
+
- sed\(\) could support replacement function [\#115](https://github.com/shelljs/shelljs/issues/115)
|
|
736
|
+
- How would you close an exec process that runs indefinitely? [\#113](https://github.com/shelljs/shelljs/issues/113)
|
|
737
|
+
- listen for intermittent output of a long-running child process [\#111](https://github.com/shelljs/shelljs/issues/111)
|
|
738
|
+
- Cannot find module 'shelljs' after installing shelljs with npm [\#109](https://github.com/shelljs/shelljs/issues/109)
|
|
739
|
+
- Massive CPU usage on exec\(\) windows [\#108](https://github.com/shelljs/shelljs/issues/108)
|
|
740
|
+
- cp skipping dot files? [\#79](https://github.com/shelljs/shelljs/issues/79)
|
|
741
|
+
- $variables in exec\(\) aren't handled correctly [\#11](https://github.com/shelljs/shelljs/issues/11)
|
|
742
|
+
- debug flag that prints commands instead of executing [\#8](https://github.com/shelljs/shelljs/issues/8)
|
|
743
|
+
|
|
744
|
+
**Merged pull requests:**
|
|
745
|
+
|
|
746
|
+
- grep\(\) support for globing, fixes \#118 [\#119](https://github.com/shelljs/shelljs/pull/119) ([utensil](https://github.com/utensil))
|
|
747
|
+
- make sed\(\) support replacement function, fixes \#115 [\#117](https://github.com/shelljs/shelljs/pull/117) ([utensil](https://github.com/utensil))
|
|
748
|
+
- which\(\) should only find files, not directories [\#110](https://github.com/shelljs/shelljs/pull/110) ([panrafal](https://github.com/panrafal))
|
|
749
|
+
- Added the New BSD license to the package.json. [\#105](https://github.com/shelljs/shelljs/pull/105) ([keskival](https://github.com/keskival))
|
|
750
|
+
- Added win32 support to ln [\#104](https://github.com/shelljs/shelljs/pull/104) ([jamon](https://github.com/jamon))
|
|
751
|
+
- Fix ln using bad paths when given abspaths. [\#89](https://github.com/shelljs/shelljs/pull/89) ([Schoonology](https://github.com/Schoonology))
|
|
752
|
+
- Add ln support, including both -s and -f options. [\#88](https://github.com/shelljs/shelljs/pull/88) ([Schoonology](https://github.com/Schoonology))
|
|
753
|
+
- add support for symlinking \(junctions\) on win32 [\#87](https://github.com/shelljs/shelljs/pull/87) ([jamon](https://github.com/jamon))
|
|
754
|
+
|
|
755
|
+
## [v0.2.6](https://github.com/shelljs/shelljs/tree/v0.2.6) (2013-09-22)
|
|
756
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.5...v0.2.6)
|
|
757
|
+
|
|
758
|
+
**Closed issues:**
|
|
759
|
+
|
|
760
|
+
- Versions 0.2.4 and 0.2.3 keep throwing strange errors [\#82](https://github.com/shelljs/shelljs/issues/82)
|
|
761
|
+
- Add global pollution tests [\#33](https://github.com/shelljs/shelljs/issues/33)
|
|
762
|
+
|
|
763
|
+
## [v0.2.5](https://github.com/shelljs/shelljs/tree/v0.2.5) (2013-09-11)
|
|
764
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.4...v0.2.5)
|
|
765
|
+
|
|
766
|
+
**Closed issues:**
|
|
767
|
+
|
|
768
|
+
- shelljs.exec stalls on Red Hat when script is invoked with 'sudo -u username' [\#72](https://github.com/shelljs/shelljs/issues/72)
|
|
769
|
+
|
|
770
|
+
## [v0.2.4](https://github.com/shelljs/shelljs/tree/v0.2.4) (2013-09-11)
|
|
771
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.3...v0.2.4)
|
|
772
|
+
|
|
773
|
+
## [v0.2.3](https://github.com/shelljs/shelljs/tree/v0.2.3) (2013-09-09)
|
|
774
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.2...v0.2.3)
|
|
775
|
+
|
|
776
|
+
**Merged pull requests:**
|
|
777
|
+
|
|
778
|
+
- Make shell.exec\(\) treat process error return codes as shelljs errors [\#80](https://github.com/shelljs/shelljs/pull/80) ([nilsbunger](https://github.com/nilsbunger))
|
|
779
|
+
|
|
780
|
+
## [v0.2.2](https://github.com/shelljs/shelljs/tree/v0.2.2) (2013-09-02)
|
|
781
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.4...v0.2.2)
|
|
782
|
+
|
|
783
|
+
**Closed issues:**
|
|
784
|
+
|
|
785
|
+
- which and node\_modules [\#63](https://github.com/shelljs/shelljs/issues/63)
|
|
786
|
+
- cannot install with nodejs 0.10.2 [\#57](https://github.com/shelljs/shelljs/issues/57)
|
|
787
|
+
|
|
788
|
+
**Merged pull requests:**
|
|
789
|
+
|
|
790
|
+
- Addition of a toEnd\(\) function modeled after the Unix \>\> pipe. [\#78](https://github.com/shelljs/shelljs/pull/78) ([a10y](https://github.com/a10y))
|
|
791
|
+
- Added appendTo\(\) function to imitate '\>\>' redirect-and-append pipe. [\#75](https://github.com/shelljs/shelljs/pull/75) ([a10y](https://github.com/a10y))
|
|
792
|
+
- Fix a small typo in README.md [\#71](https://github.com/shelljs/shelljs/pull/71) ([asmblah](https://github.com/asmblah))
|
|
793
|
+
- adding an `.npmignore` file [\#70](https://github.com/shelljs/shelljs/pull/70) ([stephenmathieson](https://github.com/stephenmathieson))
|
|
794
|
+
- tempdir: use `os.tmpDir` when possible [\#67](https://github.com/shelljs/shelljs/pull/67) ([stephenmathieson](https://github.com/stephenmathieson))
|
|
795
|
+
|
|
796
|
+
## [v0.1.4](https://github.com/shelljs/shelljs/tree/v0.1.4) (2013-05-10)
|
|
797
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.3...v0.1.4)
|
|
798
|
+
|
|
799
|
+
**Merged pull requests:**
|
|
800
|
+
|
|
801
|
+
- removing extra fs calls [\#62](https://github.com/shelljs/shelljs/pull/62) ([stephenmathieson](https://github.com/stephenmathieson))
|
|
802
|
+
- moving \_jshint\_ to a development dependency [\#61](https://github.com/shelljs/shelljs/pull/61) ([stephenmathieson](https://github.com/stephenmathieson))
|
|
803
|
+
- Make the maximum buffersize 20 MB. [\#59](https://github.com/shelljs/shelljs/pull/59) ([waddlesplash](https://github.com/waddlesplash))
|
|
804
|
+
|
|
805
|
+
## [v0.1.3](https://github.com/shelljs/shelljs/tree/v0.1.3) (2013-04-21)
|
|
806
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.2...v0.1.3)
|
|
807
|
+
|
|
808
|
+
**Merged pull requests:**
|
|
809
|
+
|
|
810
|
+
- test\('-L', badlink\) should return true [\#56](https://github.com/shelljs/shelljs/pull/56) ([lge88](https://github.com/lge88))
|
|
811
|
+
- exec options now allows `silent:true` with callback. [\#54](https://github.com/shelljs/shelljs/pull/54) ([iapain](https://github.com/iapain))
|
|
812
|
+
- Add Zepto to README [\#53](https://github.com/shelljs/shelljs/pull/53) ([madrobby](https://github.com/madrobby))
|
|
813
|
+
|
|
814
|
+
## [v0.1.2](https://github.com/shelljs/shelljs/tree/v0.1.2) (2013-01-08)
|
|
815
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.1...v0.1.2)
|
|
816
|
+
|
|
817
|
+
**Closed issues:**
|
|
818
|
+
|
|
819
|
+
- pushd/popd [\#24](https://github.com/shelljs/shelljs/issues/24)
|
|
820
|
+
|
|
821
|
+
**Merged pull requests:**
|
|
822
|
+
|
|
823
|
+
- Implemented chmod command. Github issue 35 [\#48](https://github.com/shelljs/shelljs/pull/48) ([brandonramirez](https://github.com/brandonramirez))
|
|
824
|
+
|
|
825
|
+
## [v0.1.1](https://github.com/shelljs/shelljs/tree/v0.1.1) (2013-01-01)
|
|
826
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.0...v0.1.1)
|
|
827
|
+
|
|
828
|
+
**Merged pull requests:**
|
|
829
|
+
|
|
830
|
+
- Work in progress: pushd/popd/dirs [\#47](https://github.com/shelljs/shelljs/pull/47) ([mstade](https://github.com/mstade))
|
|
831
|
+
|
|
832
|
+
## [v0.1.0](https://github.com/shelljs/shelljs/tree/v0.1.0) (2012-12-26)
|
|
833
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.9...v0.1.0)
|
|
834
|
+
|
|
835
|
+
**Closed issues:**
|
|
836
|
+
|
|
837
|
+
- test\(\) for binary file? [\#45](https://github.com/shelljs/shelljs/issues/45)
|
|
838
|
+
- Inconsistent behaviour of cp command with directories. [\#44](https://github.com/shelljs/shelljs/issues/44)
|
|
839
|
+
- Executing SSH with ShellJs [\#43](https://github.com/shelljs/shelljs/issues/43)
|
|
840
|
+
|
|
841
|
+
**Merged pull requests:**
|
|
842
|
+
|
|
843
|
+
- Fix for \#44 [\#46](https://github.com/shelljs/shelljs/pull/46) ([mstade](https://github.com/mstade))
|
|
844
|
+
- Fix single/double quotes in exec [\#42](https://github.com/shelljs/shelljs/pull/42) ([danielepolencic](https://github.com/danielepolencic))
|
|
845
|
+
|
|
846
|
+
## [v0.0.9](https://github.com/shelljs/shelljs/tree/v0.0.9) (2012-12-01)
|
|
847
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.8...v0.0.9)
|
|
848
|
+
|
|
849
|
+
**Closed issues:**
|
|
850
|
+
|
|
851
|
+
- silent output [\#40](https://github.com/shelljs/shelljs/issues/40)
|
|
852
|
+
- asynchronous exec [\#34](https://github.com/shelljs/shelljs/issues/34)
|
|
853
|
+
|
|
854
|
+
**Merged pull requests:**
|
|
855
|
+
|
|
856
|
+
- Passed process arguments to executable script [\#36](https://github.com/shelljs/shelljs/pull/36) ([Zanisimo](https://github.com/Zanisimo))
|
|
857
|
+
|
|
858
|
+
## [v0.0.8](https://github.com/shelljs/shelljs/tree/v0.0.8) (2012-10-11)
|
|
859
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.7...v0.0.8)
|
|
860
|
+
|
|
861
|
+
**Closed issues:**
|
|
862
|
+
|
|
863
|
+
- exec with callback should automatically be async [\#31](https://github.com/shelljs/shelljs/issues/31)
|
|
864
|
+
- Exporting variables. [\#30](https://github.com/shelljs/shelljs/issues/30)
|
|
865
|
+
- Detecting shelljs/node [\#27](https://github.com/shelljs/shelljs/issues/27)
|
|
866
|
+
|
|
867
|
+
**Merged pull requests:**
|
|
868
|
+
|
|
869
|
+
- fix: global leak 'stats' [\#29](https://github.com/shelljs/shelljs/pull/29) ([ando-takahiro](https://github.com/ando-takahiro))
|
|
870
|
+
- -a includes . and ..; -A does not [\#28](https://github.com/shelljs/shelljs/pull/28) ([aeosynth](https://github.com/aeosynth))
|
|
871
|
+
|
|
872
|
+
## [v0.0.7](https://github.com/shelljs/shelljs/tree/v0.0.7) (2012-09-23)
|
|
873
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6...v0.0.7)
|
|
874
|
+
|
|
875
|
+
**Closed issues:**
|
|
876
|
+
|
|
877
|
+
- gh-pages: clicking 'fork me' just reloads the page [\#26](https://github.com/shelljs/shelljs/issues/26)
|
|
878
|
+
- Not declared local var implies possible memory leak [\#21](https://github.com/shelljs/shelljs/issues/21)
|
|
879
|
+
- Cannot echo a string that starts with - [\#20](https://github.com/shelljs/shelljs/issues/20)
|
|
880
|
+
- Unexpected cp behaviour with directories [\#15](https://github.com/shelljs/shelljs/issues/15)
|
|
881
|
+
|
|
882
|
+
**Merged pull requests:**
|
|
883
|
+
|
|
884
|
+
- add primaries to \_test [\#23](https://github.com/shelljs/shelljs/pull/23) ([aeosynth](https://github.com/aeosynth))
|
|
885
|
+
|
|
886
|
+
## [v0.0.6](https://github.com/shelljs/shelljs/tree/v0.0.6) (2012-08-07)
|
|
887
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6pre2...v0.0.6)
|
|
888
|
+
|
|
889
|
+
**Merged pull requests:**
|
|
890
|
+
|
|
891
|
+
- Fixed a global variable leak [\#16](https://github.com/shelljs/shelljs/pull/16) ([dallonf](https://github.com/dallonf))
|
|
892
|
+
|
|
893
|
+
## [v0.0.6pre2](https://github.com/shelljs/shelljs/tree/v0.0.6pre2) (2012-05-25)
|
|
894
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6pre1...v0.0.6pre2)
|
|
895
|
+
|
|
896
|
+
## [v0.0.6pre1](https://github.com/shelljs/shelljs/tree/v0.0.6pre1) (2012-05-25)
|
|
897
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5...v0.0.6pre1)
|
|
898
|
+
|
|
899
|
+
## [v0.0.5](https://github.com/shelljs/shelljs/tree/v0.0.5) (2012-05-24)
|
|
900
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre4...v0.0.5)
|
|
901
|
+
|
|
902
|
+
**Closed issues:**
|
|
903
|
+
|
|
904
|
+
- global.key assigned value 'async' as a result of shell.exec\(...\) [\#12](https://github.com/shelljs/shelljs/issues/12)
|
|
905
|
+
|
|
906
|
+
**Merged pull requests:**
|
|
907
|
+
|
|
908
|
+
- Add support for grep option -v. [\#13](https://github.com/shelljs/shelljs/pull/13) ([kkujala](https://github.com/kkujala))
|
|
909
|
+
|
|
910
|
+
## [v0.0.5pre4](https://github.com/shelljs/shelljs/tree/v0.0.5pre4) (2012-03-27)
|
|
911
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre3...v0.0.5pre4)
|
|
912
|
+
|
|
913
|
+
## [v0.0.5pre3](https://github.com/shelljs/shelljs/tree/v0.0.5pre3) (2012-03-27)
|
|
914
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre2...v0.0.5pre3)
|
|
915
|
+
|
|
916
|
+
## [v0.0.5pre2](https://github.com/shelljs/shelljs/tree/v0.0.5pre2) (2012-03-26)
|
|
917
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre1...v0.0.5pre2)
|
|
918
|
+
|
|
919
|
+
## [v0.0.5pre1](https://github.com/shelljs/shelljs/tree/v0.0.5pre1) (2012-03-26)
|
|
920
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.4...v0.0.5pre1)
|
|
921
|
+
|
|
922
|
+
**Closed issues:**
|
|
923
|
+
|
|
924
|
+
- rm\(\) does not respect read/write modes [\#6](https://github.com/shelljs/shelljs/issues/6)
|
|
925
|
+
|
|
926
|
+
## [v0.0.4](https://github.com/shelljs/shelljs/tree/v0.0.4) (2012-03-22)
|
|
927
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.3...v0.0.4)
|
|
928
|
+
|
|
929
|
+
**Closed issues:**
|
|
930
|
+
|
|
931
|
+
- "For convenient iteration via `for in`, ..."? [\#4](https://github.com/shelljs/shelljs/issues/4)
|
|
932
|
+
|
|
933
|
+
## [v0.0.3](https://github.com/shelljs/shelljs/tree/v0.0.3) (2012-03-21)
|
|
934
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.2...v0.0.3)
|
|
935
|
+
|
|
936
|
+
## [v0.0.2](https://github.com/shelljs/shelljs/tree/v0.0.2) (2012-03-15)
|
|
937
|
+
[Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.2pre1...v0.0.2)
|
|
938
|
+
|
|
939
|
+
## [v0.0.2pre1](https://github.com/shelljs/shelljs/tree/v0.0.2pre1) (2012-03-03)
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|