├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── .gitignore ├── .prettierrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── INSTALL.txt ├── LICENSE ├── README.md ├── endless-tests.sh ├── index.js ├── package.json ├── patch-package.svg ├── property-based-tests ├── executeTestCase.ts ├── generativeTests.test.ts ├── regressionTests.test.ts └── testCases.ts ├── run-tests.sh ├── src ├── PackageDetails.test.ts ├── PackageDetails.ts ├── applyPatches.ts ├── assertNever.ts ├── createIssue.ts ├── detectPackageManager.test.ts ├── detectPackageManager.ts ├── filterFiles.ts ├── getAppRootPath.ts ├── getPackageResolution.ts ├── getPackageVersion.ts ├── index.ts ├── makePatch.ts ├── makeRegExp.ts ├── packageIsDevDependency.test.ts ├── packageIsDevDependency.ts ├── patch │ ├── __snapshots__ │ │ └── parse.test.ts.snap │ ├── apply.ts │ ├── parse.test.ts │ ├── parse.ts │ ├── read.test.ts │ ├── read.ts │ └── reverse.ts ├── patchFs.ts ├── path.ts ├── realpathCwd.ts ├── resolveRelativeFileDependencies.test.ts ├── resolveRelativeFileDependencies.ts ├── spawnSafe.ts └── types │ └── nodejs.global.d.ts ├── test ├── integration │ ├── run.sh │ ├── src │ │ ├── adding-and-deleting-files │ │ │ ├── adding-and-deleting-files.sh │ │ │ ├── adding-and-deleting-files.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── bashprof-analyze.sh │ │ ├── broken-patch-file │ │ │ ├── broken-patch-file.sh │ │ │ ├── broken-patch-file.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── patches │ │ │ │ └── b+1.0.0.patch │ │ ├── collate-errors │ │ │ ├── collate-errors.sh │ │ │ ├── collate-errors.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── patches │ │ │ │ ├── a+1.0.0.patch │ │ │ │ └── b+1.0.0.patch │ │ ├── create-issue │ │ │ ├── create-issue.sh │ │ │ ├── create-issue.test.ts.ignore │ │ │ ├── open.mock.js │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── custom-patch-dir │ │ │ ├── custom-patch-dir.sh │ │ │ ├── custom-patch-dir.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── custom-resolutions │ │ │ ├── custom-resolutions.sh │ │ │ ├── custom-resolutions.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── delete-old-patch-files │ │ │ ├── delete-old-patch-files.sh │ │ │ ├── delete-old-patch-files.test.ts.ignore │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ ├── @types │ │ │ │ │ └── lodash:4.14.120.patch │ │ │ │ └── lodash:4.17.11.patch │ │ │ └── yarn.lock │ │ ├── delete-scripts │ │ │ ├── delete-scripts.sh │ │ │ ├── delete-scripts.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── dev-only-patches │ │ │ ├── dev-only-patches.sh │ │ │ ├── dev-only-patches.test.ts.ignore │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ ├── left-pad+1.3.0.patch │ │ │ │ └── slash+3.0.0.patch │ │ │ └── yarn.lock │ │ ├── error-on-fail │ │ │ ├── error-on-fail.sh │ │ │ ├── error-on-fail.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── patches │ │ │ │ └── b+1.0.0.patch │ │ ├── fails-when-no-package │ │ │ ├── fails-when-no-package.sh │ │ │ ├── fails-when-no-package.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── patches │ │ │ │ └── a+1.0.0.patch │ │ ├── file-mode-changes │ │ │ ├── assert-executable.js │ │ │ ├── assert-not-executable.js │ │ │ ├── file-mode-changes.sh │ │ │ ├── file-mode-changes.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── happy-path-npm │ │ │ ├── add-postinstall.js │ │ │ ├── happy-path-npm.sh │ │ │ ├── happy-path-npm.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── happy-path-yarn │ │ │ ├── add-postinstall.js │ │ │ ├── happy-path-yarn.sh │ │ │ ├── happy-path-yarn.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── ignore-whitespace │ │ │ ├── add-whitespace.js │ │ │ ├── alphabet │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── ignore-whitespace.sh │ │ │ ├── ignore-whitespace.test.ts.ignore │ │ │ ├── package.json │ │ │ ├── strip-whitespace.js │ │ │ └── yarn.lock │ │ ├── ignores-scripts-when-making-patch │ │ │ ├── ignores-scripts-when-making-patch.sh │ │ │ ├── ignores-scripts-when-making-patch.test.ts.ignore │ │ │ ├── naughty-package │ │ │ │ ├── package.json │ │ │ │ └── postinstall.sh │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── include-exclude-paths │ │ │ ├── include-exclude-paths.sh │ │ │ ├── include-exclude-paths.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── include-exclude-regex-relativity │ │ │ ├── include-exclude-regex-relativity.sh │ │ │ ├── include-exclude-regex-relativity.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── lerna-canary │ │ │ ├── lerna-canary.sh │ │ │ ├── lerna-canary.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── nested-packages │ │ │ ├── nested-packages.sh │ │ │ ├── nested-packages.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── nested-scoped-packages │ │ │ ├── nested-scoped-packages.sh │ │ │ ├── nested-scoped-packages.test.ts.ignore │ │ │ ├── package.json │ │ │ └── yarn.lock │ │ ├── newIntegrationTest.ts │ │ ├── no-symbolic-links │ │ │ ├── no-symbolic-links.sh │ │ │ ├── no-symbolic-links.test.ts.ignore │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── package-gets-updated │ │ │ ├── package-gets-updated.sh │ │ │ ├── package-gets-updated.test.ts.ignore │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ └── left-pad+1.1.1.patch │ │ │ └── yarn.lock │ │ ├── patch-parse-failure │ │ │ ├── .pnp.js │ │ │ ├── .yarn │ │ │ │ ├── cache │ │ │ │ │ └── a-file-39a0dda47f-468dd07ac2.zip │ │ │ │ └── install-state.gz │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── patch-parse-failure.sh │ │ │ ├── patch-parse-failure.test.ts.ignore │ │ │ ├── patches │ │ │ │ ├── a+1.0.0.patch │ │ │ │ └── a+1.0.0.patch.valid │ │ │ ├── pnpm-lock.yaml │ │ │ └── yarn.lock │ │ ├── patches │ │ │ └── left-pad+1.1.3.patch │ │ ├── reverse-option │ │ │ ├── package.json │ │ │ ├── reverse-option.sh │ │ │ ├── reverse-option.test.ts.ignore │ │ │ └── yarn.lock │ │ ├── runIntegrationTest.ts │ │ ├── scoped-package │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ └── @types+a+1.0.0.patch │ │ │ ├── scoped-package.sh │ │ │ └── scoped-package.test.ts.ignore │ │ ├── shrinkwrap │ │ │ ├── npm-shrinkwrap.json │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ └── left-pad+1.1.3.patch │ │ │ ├── shrinkwrap.sh │ │ │ └── shrinkwrap.test.ts.ignore │ │ ├── unexpected-patch-creation-failure │ │ │ ├── package.json │ │ │ ├── unexpected-patch-creation-failure.sh │ │ │ ├── unexpected-patch-creation-failure.test.ts.ignore │ │ │ └── yarn.lock │ │ └── yarn-workspaces │ │ │ ├── add-postinstall-commands.js │ │ │ ├── package.json │ │ │ ├── packages │ │ │ ├── a │ │ │ │ └── package.json │ │ │ ├── b │ │ │ │ └── package.json │ │ │ └── p │ │ │ │ ├── package.json │ │ │ │ ├── patches │ │ │ │ └── a+1.0.0.patch │ │ │ │ └── pnpm-lock.yaml │ │ │ ├── yarn-workspaces.sh │ │ │ ├── yarn-workspaces.test.ts.ignore │ │ │ └── yarn.lock │ └── test │ │ ├── adding-and-deleting-files.sh │ │ ├── adding-and-deleting-files.sh.0.txt │ │ ├── adding-and-deleting-files.sh.1.txt │ │ ├── adding-and-deleting-files.sh.2.txt │ │ ├── adding-and-deleting-files.sh.3.txt │ │ ├── broken-patch-file.sh │ │ ├── broken-patch-file.sh.0.txt │ │ ├── collate-errors.sh │ │ ├── collate-errors.sh.0.txt │ │ ├── custom-patch-dir.sh │ │ ├── custom-patch-dir.sh.0.txt │ │ ├── custom-patch-dir.sh.1.txt │ │ ├── custom-patch-dir.sh.2.txt │ │ ├── custom-patch-dir.sh.3.txt │ │ ├── custom-resolutions.sh │ │ ├── custom-resolutions.sh.0.txt │ │ ├── delete-scripts.sh │ │ ├── delete-scripts.sh.1.txt │ │ ├── delete-scripts.sh.2.txt │ │ ├── error-on-fail.sh │ │ ├── error-on-fail.sh.0.txt │ │ ├── error-on-fail.sh.1.txt │ │ ├── fails-when-no-package.sh │ │ ├── fails-when-no-package.sh.0.txt │ │ ├── ignores-scripts-when-making-patch.sh │ │ ├── ignores-scripts-when-making-patch.sh.0.txt │ │ ├── ignores-scripts-when-making-patch.sh.1.txt │ │ ├── no-symbolic-links.sh │ │ ├── no-symbolic-links.sh.0.txt │ │ ├── patch-parse-failure.sh │ │ ├── patch-parse-failure.sh.0.txt │ │ ├── pnpm-workspaces.sh │ │ ├── scoped-package.sh │ │ ├── scoped-package.sh.0.txt │ │ ├── scoped-package.sh.1.txt │ │ └── scoped-package.sh.2.txt ├── packages │ ├── @types │ │ └── a-1.0.0 │ │ │ ├── index.d.ts │ │ │ └── package.json │ ├── a-1.0.0 │ │ ├── index.js │ │ └── package.json │ ├── a-1.0.1 │ │ ├── index.js │ │ └── package.json │ ├── b-1.0.0 │ │ ├── index.js │ │ └── package.json │ ├── b-2.0.0 │ │ ├── index.js │ │ └── package.json │ ├── pack.sh │ └── pkg-with-postinstall-1.0.0 │ │ ├── index.js │ │ ├── package.json │ │ └── postinstall.sh ├── readme.md └── todo-integration │ ├── create-issue.sh │ ├── delete-old-patch-files.sh │ ├── dev-only-patches.sh.FIXME │ ├── file-mode-changes.sh │ ├── happy-path-npm.sh │ ├── happy-path-yarn.sh │ ├── ignore-whitespace.sh.FIXME │ ├── include-exclude-paths.sh │ ├── include-exclude-regex-relativity.sh │ ├── lerna-canary.sh │ ├── nested-packages.sh │ ├── nested-scoped-packages.sh │ ├── package-gets-updated.sh.DUPE │ ├── reverse-option.sh │ ├── shrinkwrap.sh.FIXME │ ├── unexpected-patch-creation-failure.sh │ └── yarn-workspaces.sh ├── tsconfig.build.json ├── tsconfig.json ├── tslint.json ├── typings ├── @yarnpkg │ └── lockfile.d.ts ├── klaw-sync.d.ts ├── randomstring.d.ts └── slash.d.ts └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/README.md -------------------------------------------------------------------------------- /endless-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/endless-tests.sh -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env node 2 | 3 | require("./dist/index.js") 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/package.json -------------------------------------------------------------------------------- /patch-package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/patch-package.svg -------------------------------------------------------------------------------- /property-based-tests/executeTestCase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/property-based-tests/executeTestCase.ts -------------------------------------------------------------------------------- /property-based-tests/generativeTests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/property-based-tests/generativeTests.test.ts -------------------------------------------------------------------------------- /property-based-tests/regressionTests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/property-based-tests/regressionTests.test.ts -------------------------------------------------------------------------------- /property-based-tests/testCases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/property-based-tests/testCases.ts -------------------------------------------------------------------------------- /run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/run-tests.sh -------------------------------------------------------------------------------- /src/PackageDetails.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/PackageDetails.test.ts -------------------------------------------------------------------------------- /src/PackageDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/PackageDetails.ts -------------------------------------------------------------------------------- /src/applyPatches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/applyPatches.ts -------------------------------------------------------------------------------- /src/assertNever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/assertNever.ts -------------------------------------------------------------------------------- /src/createIssue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/createIssue.ts -------------------------------------------------------------------------------- /src/detectPackageManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/detectPackageManager.test.ts -------------------------------------------------------------------------------- /src/detectPackageManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/detectPackageManager.ts -------------------------------------------------------------------------------- /src/filterFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/filterFiles.ts -------------------------------------------------------------------------------- /src/getAppRootPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/getAppRootPath.ts -------------------------------------------------------------------------------- /src/getPackageResolution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/getPackageResolution.ts -------------------------------------------------------------------------------- /src/getPackageVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/getPackageVersion.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/makePatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/makePatch.ts -------------------------------------------------------------------------------- /src/makeRegExp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/makeRegExp.ts -------------------------------------------------------------------------------- /src/packageIsDevDependency.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/packageIsDevDependency.test.ts -------------------------------------------------------------------------------- /src/packageIsDevDependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/packageIsDevDependency.ts -------------------------------------------------------------------------------- /src/patch/__snapshots__/parse.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/__snapshots__/parse.test.ts.snap -------------------------------------------------------------------------------- /src/patch/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/apply.ts -------------------------------------------------------------------------------- /src/patch/parse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/parse.test.ts -------------------------------------------------------------------------------- /src/patch/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/parse.ts -------------------------------------------------------------------------------- /src/patch/read.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/read.test.ts -------------------------------------------------------------------------------- /src/patch/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/read.ts -------------------------------------------------------------------------------- /src/patch/reverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patch/reverse.ts -------------------------------------------------------------------------------- /src/patchFs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/patchFs.ts -------------------------------------------------------------------------------- /src/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/path.ts -------------------------------------------------------------------------------- /src/realpathCwd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/realpathCwd.ts -------------------------------------------------------------------------------- /src/resolveRelativeFileDependencies.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/resolveRelativeFileDependencies.test.ts -------------------------------------------------------------------------------- /src/resolveRelativeFileDependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/resolveRelativeFileDependencies.ts -------------------------------------------------------------------------------- /src/spawnSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/spawnSafe.ts -------------------------------------------------------------------------------- /src/types/nodejs.global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/src/types/nodejs.global.d.ts -------------------------------------------------------------------------------- /test/integration/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/run.sh -------------------------------------------------------------------------------- /test/integration/src/adding-and-deleting-files/adding-and-deleting-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/adding-and-deleting-files/adding-and-deleting-files.sh -------------------------------------------------------------------------------- /test/integration/src/adding-and-deleting-files/adding-and-deleting-files.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/adding-and-deleting-files/adding-and-deleting-files.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/adding-and-deleting-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/adding-and-deleting-files/package.json -------------------------------------------------------------------------------- /test/integration/src/adding-and-deleting-files/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/adding-and-deleting-files/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/bashprof-analyze.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/bashprof-analyze.sh -------------------------------------------------------------------------------- /test/integration/src/broken-patch-file/broken-patch-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/broken-patch-file/broken-patch-file.sh -------------------------------------------------------------------------------- /test/integration/src/broken-patch-file/broken-patch-file.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/broken-patch-file/broken-patch-file.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/broken-patch-file/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/src/broken-patch-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/broken-patch-file/package.json -------------------------------------------------------------------------------- /test/integration/src/broken-patch-file/patches/b+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/broken-patch-file/patches/b+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/collate-errors/collate-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/collate-errors.sh -------------------------------------------------------------------------------- /test/integration/src/collate-errors/collate-errors.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/collate-errors.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/collate-errors/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/package-lock.json -------------------------------------------------------------------------------- /test/integration/src/collate-errors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/package.json -------------------------------------------------------------------------------- /test/integration/src/collate-errors/patches/a+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/patches/a+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/collate-errors/patches/b+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/collate-errors/patches/b+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/create-issue/create-issue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/create-issue/create-issue.sh -------------------------------------------------------------------------------- /test/integration/src/create-issue/create-issue.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/create-issue/create-issue.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/create-issue/open.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/create-issue/open.mock.js -------------------------------------------------------------------------------- /test/integration/src/create-issue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/create-issue/package.json -------------------------------------------------------------------------------- /test/integration/src/create-issue/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/create-issue/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/custom-patch-dir/custom-patch-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-patch-dir/custom-patch-dir.sh -------------------------------------------------------------------------------- /test/integration/src/custom-patch-dir/custom-patch-dir.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-patch-dir/custom-patch-dir.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/custom-patch-dir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-patch-dir/package.json -------------------------------------------------------------------------------- /test/integration/src/custom-patch-dir/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-patch-dir/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/custom-resolutions/custom-resolutions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-resolutions/custom-resolutions.sh -------------------------------------------------------------------------------- /test/integration/src/custom-resolutions/custom-resolutions.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-resolutions/custom-resolutions.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/custom-resolutions/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/src/custom-resolutions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/custom-resolutions/package.json -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/delete-old-patch-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/delete-old-patch-files.sh -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/delete-old-patch-files.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/delete-old-patch-files.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/package.json -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/patches/@types/lodash:4.14.120.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/patches/@types/lodash:4.14.120.patch -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/patches/lodash:4.17.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/patches/lodash:4.17.11.patch -------------------------------------------------------------------------------- /test/integration/src/delete-old-patch-files/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-old-patch-files/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/delete-scripts/delete-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-scripts/delete-scripts.sh -------------------------------------------------------------------------------- /test/integration/src/delete-scripts/delete-scripts.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-scripts/delete-scripts.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/delete-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-scripts/package.json -------------------------------------------------------------------------------- /test/integration/src/delete-scripts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/delete-scripts/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/dev-only-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/dev-only-patches.sh -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/dev-only-patches.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/dev-only-patches.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/package.json -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/patches/left-pad+1.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/patches/left-pad+1.3.0.patch -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/patches/slash+3.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/patches/slash+3.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/dev-only-patches/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/dev-only-patches/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/error-on-fail/error-on-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/error-on-fail/error-on-fail.sh -------------------------------------------------------------------------------- /test/integration/src/error-on-fail/error-on-fail.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/error-on-fail/error-on-fail.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/error-on-fail/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/error-on-fail/package-lock.json -------------------------------------------------------------------------------- /test/integration/src/error-on-fail/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/error-on-fail/package.json -------------------------------------------------------------------------------- /test/integration/src/error-on-fail/patches/b+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/error-on-fail/patches/b+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/fails-when-no-package/fails-when-no-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/fails-when-no-package/fails-when-no-package.sh -------------------------------------------------------------------------------- /test/integration/src/fails-when-no-package/fails-when-no-package.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/fails-when-no-package/fails-when-no-package.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/fails-when-no-package/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/src/fails-when-no-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/fails-when-no-package/package.json -------------------------------------------------------------------------------- /test/integration/src/fails-when-no-package/patches/a+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/fails-when-no-package/patches/a+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/assert-executable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/assert-executable.js -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/assert-not-executable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/assert-not-executable.js -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/file-mode-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/file-mode-changes.sh -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/file-mode-changes.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/file-mode-changes.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/package.json -------------------------------------------------------------------------------- /test/integration/src/file-mode-changes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/file-mode-changes/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/happy-path-npm/add-postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-npm/add-postinstall.js -------------------------------------------------------------------------------- /test/integration/src/happy-path-npm/happy-path-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-npm/happy-path-npm.sh -------------------------------------------------------------------------------- /test/integration/src/happy-path-npm/happy-path-npm.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-npm/happy-path-npm.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/happy-path-npm/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-npm/package-lock.json -------------------------------------------------------------------------------- /test/integration/src/happy-path-npm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-npm/package.json -------------------------------------------------------------------------------- /test/integration/src/happy-path-yarn/add-postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-yarn/add-postinstall.js -------------------------------------------------------------------------------- /test/integration/src/happy-path-yarn/happy-path-yarn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-yarn/happy-path-yarn.sh -------------------------------------------------------------------------------- /test/integration/src/happy-path-yarn/happy-path-yarn.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-yarn/happy-path-yarn.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/happy-path-yarn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-yarn/package.json -------------------------------------------------------------------------------- /test/integration/src/happy-path-yarn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/happy-path-yarn/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/add-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/add-whitespace.js -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/alphabet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/alphabet/index.js -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/alphabet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/alphabet/package.json -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/ignore-whitespace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/ignore-whitespace.sh -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/ignore-whitespace.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/ignore-whitespace.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/package.json -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/strip-whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/strip-whitespace.js -------------------------------------------------------------------------------- /test/integration/src/ignore-whitespace/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignore-whitespace/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/ignores-scripts-when-making-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/ignores-scripts-when-making-patch.sh -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/ignores-scripts-when-making-patch.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/ignores-scripts-when-making-patch.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/naughty-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/naughty-package/package.json -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/naughty-package/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/naughty-package/postinstall.sh -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/package.json -------------------------------------------------------------------------------- /test/integration/src/ignores-scripts-when-making-patch/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/ignores-scripts-when-making-patch/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/include-exclude-paths/include-exclude-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-paths/include-exclude-paths.sh -------------------------------------------------------------------------------- /test/integration/src/include-exclude-paths/include-exclude-paths.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-paths/include-exclude-paths.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/include-exclude-paths/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-paths/package.json -------------------------------------------------------------------------------- /test/integration/src/include-exclude-paths/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-paths/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/include-exclude-regex-relativity/include-exclude-regex-relativity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-regex-relativity/include-exclude-regex-relativity.sh -------------------------------------------------------------------------------- /test/integration/src/include-exclude-regex-relativity/include-exclude-regex-relativity.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-regex-relativity/include-exclude-regex-relativity.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/include-exclude-regex-relativity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-regex-relativity/package.json -------------------------------------------------------------------------------- /test/integration/src/include-exclude-regex-relativity/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/include-exclude-regex-relativity/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/lerna-canary/lerna-canary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/lerna-canary/lerna-canary.sh -------------------------------------------------------------------------------- /test/integration/src/lerna-canary/lerna-canary.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/lerna-canary/lerna-canary.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/lerna-canary/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/lerna-canary/package.json -------------------------------------------------------------------------------- /test/integration/src/lerna-canary/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/lerna-canary/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/nested-packages/nested-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-packages/nested-packages.sh -------------------------------------------------------------------------------- /test/integration/src/nested-packages/nested-packages.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-packages/nested-packages.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/nested-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-packages/package.json -------------------------------------------------------------------------------- /test/integration/src/nested-packages/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-packages/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/nested-scoped-packages/nested-scoped-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-scoped-packages/nested-scoped-packages.sh -------------------------------------------------------------------------------- /test/integration/src/nested-scoped-packages/nested-scoped-packages.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-scoped-packages/nested-scoped-packages.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/nested-scoped-packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-scoped-packages/package.json -------------------------------------------------------------------------------- /test/integration/src/nested-scoped-packages/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/nested-scoped-packages/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/newIntegrationTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/newIntegrationTest.ts -------------------------------------------------------------------------------- /test/integration/src/no-symbolic-links/no-symbolic-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/no-symbolic-links/no-symbolic-links.sh -------------------------------------------------------------------------------- /test/integration/src/no-symbolic-links/no-symbolic-links.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/no-symbolic-links/no-symbolic-links.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/no-symbolic-links/package-lock.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/src/no-symbolic-links/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/no-symbolic-links/package.json -------------------------------------------------------------------------------- /test/integration/src/package-gets-updated/package-gets-updated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/package-gets-updated/package-gets-updated.sh -------------------------------------------------------------------------------- /test/integration/src/package-gets-updated/package-gets-updated.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/package-gets-updated/package-gets-updated.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/package-gets-updated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/package-gets-updated/package.json -------------------------------------------------------------------------------- /test/integration/src/package-gets-updated/patches/left-pad+1.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/package-gets-updated/patches/left-pad+1.1.1.patch -------------------------------------------------------------------------------- /test/integration/src/package-gets-updated/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/package-gets-updated/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/.pnp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/.pnp.js -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/.yarn/cache/a-file-39a0dda47f-468dd07ac2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/.yarn/cache/a-file-39a0dda47f-468dd07ac2.zip -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/.yarn/install-state.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/.yarn/install-state.gz -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/index.js: -------------------------------------------------------------------------------- 1 | var a = require('a'); 2 | console.log(a.a); 3 | -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/package-lock.json -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/package.json -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/patch-parse-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/patch-parse-failure.sh -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/patch-parse-failure.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/patch-parse-failure.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/patches/a+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/patches/a+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/patches/a+1.0.0.patch.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/patches/a+1.0.0.patch.valid -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/integration/src/patch-parse-failure/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patch-parse-failure/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/patches/left-pad+1.1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/patches/left-pad+1.1.3.patch -------------------------------------------------------------------------------- /test/integration/src/reverse-option/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/reverse-option/package.json -------------------------------------------------------------------------------- /test/integration/src/reverse-option/reverse-option.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/reverse-option/reverse-option.sh -------------------------------------------------------------------------------- /test/integration/src/reverse-option/reverse-option.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/reverse-option/reverse-option.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/reverse-option/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/reverse-option/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/runIntegrationTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/runIntegrationTest.ts -------------------------------------------------------------------------------- /test/integration/src/scoped-package/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/scoped-package/package-lock.json -------------------------------------------------------------------------------- /test/integration/src/scoped-package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/scoped-package/package.json -------------------------------------------------------------------------------- /test/integration/src/scoped-package/patches/@types+a+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/scoped-package/patches/@types+a+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/scoped-package/scoped-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/scoped-package/scoped-package.sh -------------------------------------------------------------------------------- /test/integration/src/scoped-package/scoped-package.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/scoped-package/scoped-package.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/shrinkwrap/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/shrinkwrap/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/integration/src/shrinkwrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/shrinkwrap/package.json -------------------------------------------------------------------------------- /test/integration/src/shrinkwrap/patches/left-pad+1.1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/shrinkwrap/patches/left-pad+1.1.3.patch -------------------------------------------------------------------------------- /test/integration/src/shrinkwrap/shrinkwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/shrinkwrap/shrinkwrap.sh -------------------------------------------------------------------------------- /test/integration/src/shrinkwrap/shrinkwrap.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/shrinkwrap/shrinkwrap.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/unexpected-patch-creation-failure/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/unexpected-patch-creation-failure/package.json -------------------------------------------------------------------------------- /test/integration/src/unexpected-patch-creation-failure/unexpected-patch-creation-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/unexpected-patch-creation-failure/unexpected-patch-creation-failure.sh -------------------------------------------------------------------------------- /test/integration/src/unexpected-patch-creation-failure/unexpected-patch-creation-failure.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/unexpected-patch-creation-failure/unexpected-patch-creation-failure.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/unexpected-patch-creation-failure/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/unexpected-patch-creation-failure/yarn.lock -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/add-postinstall-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/add-postinstall-commands.js -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/package.json -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/packages/a/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/packages/a/package.json -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/packages/b/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/packages/b/package.json -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/packages/p/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/packages/p/package.json -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/packages/p/patches/a+1.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/packages/p/patches/a+1.0.0.patch -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/packages/p/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/packages/p/pnpm-lock.yaml -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/yarn-workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/yarn-workspaces.sh -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/yarn-workspaces.test.ts.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/yarn-workspaces.test.ts.ignore -------------------------------------------------------------------------------- /test/integration/src/yarn-workspaces/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/src/yarn-workspaces/yarn.lock -------------------------------------------------------------------------------- /test/integration/test/adding-and-deleting-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/adding-and-deleting-files.sh -------------------------------------------------------------------------------- /test/integration/test/adding-and-deleting-files.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/adding-and-deleting-files.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/adding-and-deleting-files.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/adding-and-deleting-files.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/adding-and-deleting-files.sh.2.txt: -------------------------------------------------------------------------------- 1 | this is a new file 2 | -------------------------------------------------------------------------------- /test/integration/test/adding-and-deleting-files.sh.3.txt: -------------------------------------------------------------------------------- 1 | cat: node_modules/a/index.js: No such file or directory 2 | -------------------------------------------------------------------------------- /test/integration/test/broken-patch-file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/broken-patch-file.sh -------------------------------------------------------------------------------- /test/integration/test/broken-patch-file.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/broken-patch-file.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/collate-errors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/collate-errors.sh -------------------------------------------------------------------------------- /test/integration/test/collate-errors.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/collate-errors.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/custom-patch-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-patch-dir.sh -------------------------------------------------------------------------------- /test/integration/test/custom-patch-dir.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-patch-dir.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/custom-patch-dir.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-patch-dir.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/custom-patch-dir.sh.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-patch-dir.sh.2.txt -------------------------------------------------------------------------------- /test/integration/test/custom-patch-dir.sh.3.txt: -------------------------------------------------------------------------------- 1 | module.patch_package = { 2 | -------------------------------------------------------------------------------- /test/integration/test/custom-resolutions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-resolutions.sh -------------------------------------------------------------------------------- /test/integration/test/custom-resolutions.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/custom-resolutions.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/delete-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/delete-scripts.sh -------------------------------------------------------------------------------- /test/integration/test/delete-scripts.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/delete-scripts.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/delete-scripts.sh.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/delete-scripts.sh.2.txt -------------------------------------------------------------------------------- /test/integration/test/error-on-fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/error-on-fail.sh -------------------------------------------------------------------------------- /test/integration/test/error-on-fail.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/error-on-fail.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/error-on-fail.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/error-on-fail.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/fails-when-no-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/fails-when-no-package.sh -------------------------------------------------------------------------------- /test/integration/test/fails-when-no-package.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/fails-when-no-package.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/ignores-scripts-when-making-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/ignores-scripts-when-making-patch.sh -------------------------------------------------------------------------------- /test/integration/test/ignores-scripts-when-making-patch.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/ignores-scripts-when-making-patch.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/ignores-scripts-when-making-patch.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/ignores-scripts-when-making-patch.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/no-symbolic-links.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/no-symbolic-links.sh -------------------------------------------------------------------------------- /test/integration/test/no-symbolic-links.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/no-symbolic-links.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/patch-parse-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/patch-parse-failure.sh -------------------------------------------------------------------------------- /test/integration/test/patch-parse-failure.sh.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/patch-parse-failure.sh.0.txt -------------------------------------------------------------------------------- /test/integration/test/pnpm-workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/pnpm-workspaces.sh -------------------------------------------------------------------------------- /test/integration/test/scoped-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/scoped-package.sh -------------------------------------------------------------------------------- /test/integration/test/scoped-package.sh.0.txt: -------------------------------------------------------------------------------- 1 | export default interface patch_package { 2 | -------------------------------------------------------------------------------- /test/integration/test/scoped-package.sh.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/integration/test/scoped-package.sh.1.txt -------------------------------------------------------------------------------- /test/integration/test/scoped-package.sh.2.txt: -------------------------------------------------------------------------------- 1 | export default interface patch_package_2 { 2 | -------------------------------------------------------------------------------- /test/packages/@types/a-1.0.0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/@types/a-1.0.0/index.d.ts -------------------------------------------------------------------------------- /test/packages/@types/a-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/@types/a-1.0.0/package.json -------------------------------------------------------------------------------- /test/packages/a-1.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/a-1.0.0/index.js -------------------------------------------------------------------------------- /test/packages/a-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/a-1.0.0/package.json -------------------------------------------------------------------------------- /test/packages/a-1.0.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/a-1.0.1/index.js -------------------------------------------------------------------------------- /test/packages/a-1.0.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/a-1.0.1/package.json -------------------------------------------------------------------------------- /test/packages/b-1.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/b-1.0.0/index.js -------------------------------------------------------------------------------- /test/packages/b-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/b-1.0.0/package.json -------------------------------------------------------------------------------- /test/packages/b-2.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/b-2.0.0/index.js -------------------------------------------------------------------------------- /test/packages/b-2.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/b-2.0.0/package.json -------------------------------------------------------------------------------- /test/packages/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/pack.sh -------------------------------------------------------------------------------- /test/packages/pkg-with-postinstall-1.0.0/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/pkg-with-postinstall-1.0.0/index.js -------------------------------------------------------------------------------- /test/packages/pkg-with-postinstall-1.0.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/packages/pkg-with-postinstall-1.0.0/package.json -------------------------------------------------------------------------------- /test/packages/pkg-with-postinstall-1.0.0/postinstall.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | # do nothing. return 0 = success 4 | -------------------------------------------------------------------------------- /test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/readme.md -------------------------------------------------------------------------------- /test/todo-integration/create-issue.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/create-issue.sh -------------------------------------------------------------------------------- /test/todo-integration/delete-old-patch-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/delete-old-patch-files.sh -------------------------------------------------------------------------------- /test/todo-integration/dev-only-patches.sh.FIXME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/dev-only-patches.sh.FIXME -------------------------------------------------------------------------------- /test/todo-integration/file-mode-changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/file-mode-changes.sh -------------------------------------------------------------------------------- /test/todo-integration/happy-path-npm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/happy-path-npm.sh -------------------------------------------------------------------------------- /test/todo-integration/happy-path-yarn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/happy-path-yarn.sh -------------------------------------------------------------------------------- /test/todo-integration/ignore-whitespace.sh.FIXME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/ignore-whitespace.sh.FIXME -------------------------------------------------------------------------------- /test/todo-integration/include-exclude-paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/include-exclude-paths.sh -------------------------------------------------------------------------------- /test/todo-integration/include-exclude-regex-relativity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/include-exclude-regex-relativity.sh -------------------------------------------------------------------------------- /test/todo-integration/lerna-canary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/lerna-canary.sh -------------------------------------------------------------------------------- /test/todo-integration/nested-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/nested-packages.sh -------------------------------------------------------------------------------- /test/todo-integration/nested-scoped-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/nested-scoped-packages.sh -------------------------------------------------------------------------------- /test/todo-integration/package-gets-updated.sh.DUPE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/package-gets-updated.sh.DUPE -------------------------------------------------------------------------------- /test/todo-integration/reverse-option.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/reverse-option.sh -------------------------------------------------------------------------------- /test/todo-integration/shrinkwrap.sh.FIXME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/shrinkwrap.sh.FIXME -------------------------------------------------------------------------------- /test/todo-integration/unexpected-patch-creation-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/unexpected-patch-creation-failure.sh -------------------------------------------------------------------------------- /test/todo-integration/yarn-workspaces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/test/todo-integration/yarn-workspaces.sh -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/@yarnpkg/lockfile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/typings/@yarnpkg/lockfile.d.ts -------------------------------------------------------------------------------- /typings/klaw-sync.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/typings/klaw-sync.d.ts -------------------------------------------------------------------------------- /typings/randomstring.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/typings/randomstring.d.ts -------------------------------------------------------------------------------- /typings/slash.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/typings/slash.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milahu/patch-package/HEAD/yarn.lock --------------------------------------------------------------------------------