├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ └── typescript-cli-checks.yml ├── .gitignore ├── LICENSE ├── README.md ├── cleanroom ├── mozconfigs │ └── hatchedegg │ │ ├── branding.mozconfig │ │ ├── buildSymbols.mozconfig │ │ ├── debug.mozconfig │ │ └── optimized.mozconfig └── source │ ├── app.mozbuild │ ├── app │ ├── Makefile.in │ ├── app.cpp │ ├── macbuild │ │ └── Contents │ │ │ ├── Info.plist.in │ │ │ ├── MacOS-files-copy.in │ │ │ ├── MacOS-files.in │ │ │ ├── Resources │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings.in │ │ │ └── moz.build │ ├── macversion.py │ └── moz.build │ ├── build.mk │ ├── config │ ├── version.txt │ └── version_display.txt │ ├── frontend │ ├── app-preferences.js │ ├── bookOfMozilla-12-29.html │ ├── branding │ │ └── en-US │ │ │ ├── brand.dtd │ │ │ └── brand.properties │ ├── content │ │ ├── main.js │ │ └── main.xhtml │ ├── jar.mn │ └── moz.build │ ├── installer │ ├── Makefile.in │ └── moz.build │ ├── modules │ ├── DevtoolsServer.jsm │ └── moz.build │ ├── moz.build │ └── moz.configure ├── cli ├── build-utilities │ ├── isRepoClean.js │ └── onPush_cli.js ├── commands │ ├── create.js │ ├── mach.js │ ├── setup.js │ ├── tools │ │ ├── CommandSettings-type.js │ │ ├── Configuration.js │ │ ├── childProcessAsync.js │ │ ├── mercurial.js │ │ └── mozconfigs.js │ └── where.js ├── configuration │ ├── FileSystemQueue.js │ ├── PathResolver.js │ └── version-1.0 │ │ ├── json │ │ ├── ConfigFileFormat.js │ │ ├── Dictionary.js │ │ ├── Firefox.js │ │ ├── Integration.js │ │ ├── JSON_Operations.js │ │ ├── Patches.js │ │ ├── Project.js │ │ ├── StringSet.js │ │ └── Summary.js │ │ └── wizard │ │ ├── ChooseTasks.js │ │ ├── Confirm.js │ │ ├── CreateEnvironment.js │ │ ├── DictionaryBase.js │ │ ├── Driver.js │ │ ├── Firefox.js │ │ ├── Integration.js │ │ ├── Patches.js │ │ ├── Project.js │ │ ├── SharedArguments.js │ │ ├── Sources.js │ │ ├── assert.js │ │ ├── maybeLog.js │ │ ├── pickConfigLocation.js │ │ ├── pickFileToCreate.js │ │ └── shared-types.js ├── motherhen.js └── utilities │ ├── FakeInquirer.js │ ├── PartialInquirer.js │ ├── PromiseTypes.js │ ├── TempDirWithCleanup.js │ ├── fileExists.js │ ├── getModuleDefault.js │ ├── inquirer-registration.js │ ├── projectRoot.js │ └── readDirsDeep.js ├── jest.config.js ├── mozconfigs ├── README.md ├── base │ ├── buildSymbols.mozconfig │ ├── debug.mozconfig │ └── optimized.mozconfig └── firefox │ ├── buildSymbols.mozconfig │ ├── debug.mozconfig │ └── optimized.mozconfig ├── newapp-sym.mozconfig ├── package.json ├── patches ├── 0001-Build-Error-Remote-settings-dump-were-missing.patch ├── 0002-Tooling-Override-application-check.patch ├── 0003-Remove-settings-sync-service.patch └── README.md ├── screenshot.png ├── test ├── .motherhen-config.json └── sources │ └── hatchedegg │ ├── app.mozbuild │ ├── app │ ├── Makefile.in │ ├── app.cpp │ ├── macbuild │ │ └── Contents │ │ │ ├── Info.plist.in │ │ │ ├── MacOS-files-copy.in │ │ │ ├── MacOS-files.in │ │ │ ├── Resources │ │ │ └── English.lproj │ │ │ │ └── InfoPlist.strings.in │ │ │ └── moz.build │ ├── macversion.py │ └── moz.build │ ├── build.mk │ ├── config │ ├── version.txt │ └── version_display.txt │ ├── frontend │ ├── app-preferences.js │ ├── bookOfMozilla-12-29.html │ ├── branding │ │ └── en-US │ │ │ ├── brand.dtd │ │ │ └── brand.properties │ ├── content │ │ ├── main.js │ │ └── main.xhtml │ ├── jar.mn │ └── moz.build │ ├── installer │ ├── Makefile.in │ └── moz.build │ ├── modules │ ├── DevtoolsServer.jsm │ └── moz.build │ ├── moz.build │ └── moz.configure ├── tsconfig.json └── typescript-cli ├── __tests__ ├── configuration │ ├── FileSystemQueue.ts │ ├── PathResolver.ts │ └── version-1.0 │ │ ├── fixtures │ │ ├── saveConfigurationAndRead.ts │ │ └── setupSharedAndTasks.ts │ │ ├── json │ │ ├── ConfigFileFormat.ts │ │ ├── Dictionary.ts │ │ ├── Firefox.ts │ │ ├── Integration.ts │ │ ├── JSON_Operations.ts │ │ ├── Patches.ts │ │ ├── Project.ts │ │ ├── StringSet.ts │ │ └── Summary.ts │ │ └── wizard │ │ ├── ChooseTasks.ts │ │ ├── CreateEnvironment.ts │ │ ├── Driver.ts │ │ ├── Firefox.ts │ │ ├── Integration.ts │ │ ├── Patches.ts │ │ ├── Project.ts │ │ ├── SharedArguments.ts │ │ └── Sources.ts └── utilities │ ├── FakeInquirer.ts │ ├── TempDirWithCleanup.ts │ └── projectRoot.ts ├── build-utilities ├── isRepoClean.ts └── onPush_cli.ts ├── commands ├── create.ts ├── mach.ts ├── setup.ts ├── tools │ ├── CommandSettings-type.ts │ ├── Configuration.ts │ ├── childProcessAsync.ts │ ├── mercurial.ts │ └── mozconfigs.ts └── where.ts ├── configuration ├── FileSystemQueue.ts ├── PathResolver.ts ├── README.md └── version-1.0 │ ├── json │ ├── ConfigFileFormat.ts │ ├── Dictionary.ts │ ├── Firefox.ts │ ├── Integration.ts │ ├── JSON_Operations.ts │ ├── Patches.ts │ ├── Project.ts │ ├── StringSet.ts │ └── Summary.ts │ └── wizard │ ├── ChooseTasks.ts │ ├── Confirm.ts │ ├── CreateEnvironment.ts │ ├── DictionaryBase.ts │ ├── Driver.ts │ ├── Firefox.ts │ ├── Integration.ts │ ├── Patches.ts │ ├── Project.ts │ ├── SharedArguments.ts │ ├── Sources.ts │ ├── assert.ts │ ├── maybeLog.ts │ ├── pickConfigLocation.ts │ ├── pickFileToCreate.ts │ └── shared-types.ts ├── motherhen.ts └── utilities ├── FakeInquirer.ts ├── PartialInquirer.ts ├── PromiseTypes.ts ├── TempDirWithCleanup.ts ├── fileExists.ts ├── getModuleDefault.ts ├── inquirer-registration.ts ├── projectRoot.ts └── readDirsDeep.ts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/typescript-cli-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/.github/workflows/typescript-cli-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/README.md -------------------------------------------------------------------------------- /cleanroom/mozconfigs/hatchedegg/branding.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/mozconfigs/hatchedegg/branding.mozconfig -------------------------------------------------------------------------------- /cleanroom/mozconfigs/hatchedegg/buildSymbols.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/mozconfigs/hatchedegg/buildSymbols.mozconfig -------------------------------------------------------------------------------- /cleanroom/mozconfigs/hatchedegg/debug.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/mozconfigs/hatchedegg/debug.mozconfig -------------------------------------------------------------------------------- /cleanroom/mozconfigs/hatchedegg/optimized.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/mozconfigs/hatchedegg/optimized.mozconfig -------------------------------------------------------------------------------- /cleanroom/source/app.mozbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app.mozbuild -------------------------------------------------------------------------------- /cleanroom/source/app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/Makefile.in -------------------------------------------------------------------------------- /cleanroom/source/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/app.cpp -------------------------------------------------------------------------------- /cleanroom/source/app/macbuild/Contents/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macbuild/Contents/Info.plist.in -------------------------------------------------------------------------------- /cleanroom/source/app/macbuild/Contents/MacOS-files-copy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macbuild/Contents/MacOS-files-copy.in -------------------------------------------------------------------------------- /cleanroom/source/app/macbuild/Contents/MacOS-files.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macbuild/Contents/MacOS-files.in -------------------------------------------------------------------------------- /cleanroom/source/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in -------------------------------------------------------------------------------- /cleanroom/source/app/macbuild/Contents/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macbuild/Contents/moz.build -------------------------------------------------------------------------------- /cleanroom/source/app/macversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/macversion.py -------------------------------------------------------------------------------- /cleanroom/source/app/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/app/moz.build -------------------------------------------------------------------------------- /cleanroom/source/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/build.mk -------------------------------------------------------------------------------- /cleanroom/source/config/version.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /cleanroom/source/config/version_display.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /cleanroom/source/frontend/app-preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/app-preferences.js -------------------------------------------------------------------------------- /cleanroom/source/frontend/bookOfMozilla-12-29.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/bookOfMozilla-12-29.html -------------------------------------------------------------------------------- /cleanroom/source/frontend/branding/en-US/brand.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/branding/en-US/brand.dtd -------------------------------------------------------------------------------- /cleanroom/source/frontend/branding/en-US/brand.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/branding/en-US/brand.properties -------------------------------------------------------------------------------- /cleanroom/source/frontend/content/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/content/main.js -------------------------------------------------------------------------------- /cleanroom/source/frontend/content/main.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/content/main.xhtml -------------------------------------------------------------------------------- /cleanroom/source/frontend/jar.mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/jar.mn -------------------------------------------------------------------------------- /cleanroom/source/frontend/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/frontend/moz.build -------------------------------------------------------------------------------- /cleanroom/source/installer/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/installer/Makefile.in -------------------------------------------------------------------------------- /cleanroom/source/installer/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/installer/moz.build -------------------------------------------------------------------------------- /cleanroom/source/modules/DevtoolsServer.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/modules/DevtoolsServer.jsm -------------------------------------------------------------------------------- /cleanroom/source/modules/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/modules/moz.build -------------------------------------------------------------------------------- /cleanroom/source/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/moz.build -------------------------------------------------------------------------------- /cleanroom/source/moz.configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cleanroom/source/moz.configure -------------------------------------------------------------------------------- /cli/build-utilities/isRepoClean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/build-utilities/isRepoClean.js -------------------------------------------------------------------------------- /cli/build-utilities/onPush_cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/build-utilities/onPush_cli.js -------------------------------------------------------------------------------- /cli/commands/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/create.js -------------------------------------------------------------------------------- /cli/commands/mach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/mach.js -------------------------------------------------------------------------------- /cli/commands/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/setup.js -------------------------------------------------------------------------------- /cli/commands/tools/CommandSettings-type.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=CommandSettings-type.js.map -------------------------------------------------------------------------------- /cli/commands/tools/Configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/tools/Configuration.js -------------------------------------------------------------------------------- /cli/commands/tools/childProcessAsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/tools/childProcessAsync.js -------------------------------------------------------------------------------- /cli/commands/tools/mercurial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/tools/mercurial.js -------------------------------------------------------------------------------- /cli/commands/tools/mozconfigs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/tools/mozconfigs.js -------------------------------------------------------------------------------- /cli/commands/where.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/commands/where.js -------------------------------------------------------------------------------- /cli/configuration/FileSystemQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/FileSystemQueue.js -------------------------------------------------------------------------------- /cli/configuration/PathResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/PathResolver.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/ConfigFileFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/ConfigFileFormat.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Dictionary.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Firefox.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Integration.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/JSON_Operations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/JSON_Operations.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Patches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Patches.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Project.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/StringSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/StringSet.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/json/Summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/json/Summary.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/ChooseTasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/ChooseTasks.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Confirm.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/CreateEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/CreateEnvironment.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/DictionaryBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/DictionaryBase.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Driver.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Firefox.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Integration.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Patches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Patches.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Project.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/SharedArguments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/SharedArguments.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/Sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/Sources.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/assert.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/maybeLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/maybeLog.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/pickConfigLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/pickConfigLocation.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/pickFileToCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/configuration/version-1.0/wizard/pickFileToCreate.js -------------------------------------------------------------------------------- /cli/configuration/version-1.0/wizard/shared-types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=shared-types.js.map -------------------------------------------------------------------------------- /cli/motherhen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/motherhen.js -------------------------------------------------------------------------------- /cli/utilities/FakeInquirer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/FakeInquirer.js -------------------------------------------------------------------------------- /cli/utilities/PartialInquirer.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=PartialInquirer.js.map -------------------------------------------------------------------------------- /cli/utilities/PromiseTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/PromiseTypes.js -------------------------------------------------------------------------------- /cli/utilities/TempDirWithCleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/TempDirWithCleanup.js -------------------------------------------------------------------------------- /cli/utilities/fileExists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/fileExists.js -------------------------------------------------------------------------------- /cli/utilities/getModuleDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/getModuleDefault.js -------------------------------------------------------------------------------- /cli/utilities/inquirer-registration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/inquirer-registration.js -------------------------------------------------------------------------------- /cli/utilities/projectRoot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/projectRoot.js -------------------------------------------------------------------------------- /cli/utilities/readDirsDeep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/cli/utilities/readDirsDeep.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/jest.config.js -------------------------------------------------------------------------------- /mozconfigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/README.md -------------------------------------------------------------------------------- /mozconfigs/base/buildSymbols.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/base/buildSymbols.mozconfig -------------------------------------------------------------------------------- /mozconfigs/base/debug.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/base/debug.mozconfig -------------------------------------------------------------------------------- /mozconfigs/base/optimized.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/base/optimized.mozconfig -------------------------------------------------------------------------------- /mozconfigs/firefox/buildSymbols.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/firefox/buildSymbols.mozconfig -------------------------------------------------------------------------------- /mozconfigs/firefox/debug.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/firefox/debug.mozconfig -------------------------------------------------------------------------------- /mozconfigs/firefox/optimized.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/mozconfigs/firefox/optimized.mozconfig -------------------------------------------------------------------------------- /newapp-sym.mozconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/newapp-sym.mozconfig -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/package.json -------------------------------------------------------------------------------- /patches/0001-Build-Error-Remote-settings-dump-were-missing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/patches/0001-Build-Error-Remote-settings-dump-were-missing.patch -------------------------------------------------------------------------------- /patches/0002-Tooling-Override-application-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/patches/0002-Tooling-Override-application-check.patch -------------------------------------------------------------------------------- /patches/0003-Remove-settings-sync-service.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/patches/0003-Remove-settings-sync-service.patch -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/patches/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/screenshot.png -------------------------------------------------------------------------------- /test/.motherhen-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/.motherhen-config.json -------------------------------------------------------------------------------- /test/sources/hatchedegg/app.mozbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app.mozbuild -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/Makefile.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/app.cpp -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macbuild/Contents/Info.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macbuild/Contents/Info.plist.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macbuild/Contents/MacOS-files-copy.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macbuild/Contents/MacOS-files-copy.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macbuild/Contents/MacOS-files.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macbuild/Contents/MacOS-files.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macbuild/Contents/Resources/English.lproj/InfoPlist.strings.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macbuild/Contents/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macbuild/Contents/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/macversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/macversion.py -------------------------------------------------------------------------------- /test/sources/hatchedegg/app/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/app/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/build.mk -------------------------------------------------------------------------------- /test/sources/hatchedegg/config/version.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /test/sources/hatchedegg/config/version_display.txt: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/app-preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/app-preferences.js -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/bookOfMozilla-12-29.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/bookOfMozilla-12-29.html -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/branding/en-US/brand.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/branding/en-US/brand.dtd -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/branding/en-US/brand.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/branding/en-US/brand.properties -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/content/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/content/main.js -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/content/main.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/content/main.xhtml -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/jar.mn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/jar.mn -------------------------------------------------------------------------------- /test/sources/hatchedegg/frontend/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/frontend/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/installer/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/installer/Makefile.in -------------------------------------------------------------------------------- /test/sources/hatchedegg/installer/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/installer/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/modules/DevtoolsServer.jsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/modules/DevtoolsServer.jsm -------------------------------------------------------------------------------- /test/sources/hatchedegg/modules/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/modules/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/moz.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/moz.build -------------------------------------------------------------------------------- /test/sources/hatchedegg/moz.configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/test/sources/hatchedegg/moz.configure -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/FileSystemQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/FileSystemQueue.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/PathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/PathResolver.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/fixtures/saveConfigurationAndRead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/fixtures/saveConfigurationAndRead.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/fixtures/setupSharedAndTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/fixtures/setupSharedAndTasks.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/ConfigFileFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/ConfigFileFormat.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Dictionary.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Firefox.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Integration.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/JSON_Operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/JSON_Operations.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Patches.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Project.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/StringSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/StringSet.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/json/Summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/json/Summary.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/ChooseTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/ChooseTasks.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/CreateEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/CreateEnvironment.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Driver.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Firefox.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Integration.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Patches.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Project.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/SharedArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/SharedArguments.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/configuration/version-1.0/wizard/Sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/configuration/version-1.0/wizard/Sources.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/utilities/FakeInquirer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/utilities/FakeInquirer.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/utilities/TempDirWithCleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/utilities/TempDirWithCleanup.ts -------------------------------------------------------------------------------- /typescript-cli/__tests__/utilities/projectRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/__tests__/utilities/projectRoot.ts -------------------------------------------------------------------------------- /typescript-cli/build-utilities/isRepoClean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/build-utilities/isRepoClean.ts -------------------------------------------------------------------------------- /typescript-cli/build-utilities/onPush_cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/build-utilities/onPush_cli.ts -------------------------------------------------------------------------------- /typescript-cli/commands/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/create.ts -------------------------------------------------------------------------------- /typescript-cli/commands/mach.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/mach.ts -------------------------------------------------------------------------------- /typescript-cli/commands/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/setup.ts -------------------------------------------------------------------------------- /typescript-cli/commands/tools/CommandSettings-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/tools/CommandSettings-type.ts -------------------------------------------------------------------------------- /typescript-cli/commands/tools/Configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/tools/Configuration.ts -------------------------------------------------------------------------------- /typescript-cli/commands/tools/childProcessAsync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/tools/childProcessAsync.ts -------------------------------------------------------------------------------- /typescript-cli/commands/tools/mercurial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/tools/mercurial.ts -------------------------------------------------------------------------------- /typescript-cli/commands/tools/mozconfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/tools/mozconfigs.ts -------------------------------------------------------------------------------- /typescript-cli/commands/where.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/commands/where.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/FileSystemQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/FileSystemQueue.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/PathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/PathResolver.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/README.md -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/ConfigFileFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/ConfigFileFormat.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Dictionary.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Firefox.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Integration.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/JSON_Operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/JSON_Operations.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Patches.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Project.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/StringSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/StringSet.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/json/Summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/json/Summary.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/ChooseTasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/ChooseTasks.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Confirm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Confirm.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/CreateEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/CreateEnvironment.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/DictionaryBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/DictionaryBase.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Driver.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Firefox.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Integration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Integration.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Patches.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Project.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/SharedArguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/SharedArguments.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/Sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/Sources.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/assert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/assert.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/maybeLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/maybeLog.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/pickConfigLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/pickConfigLocation.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/pickFileToCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/pickFileToCreate.ts -------------------------------------------------------------------------------- /typescript-cli/configuration/version-1.0/wizard/shared-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/configuration/version-1.0/wizard/shared-types.ts -------------------------------------------------------------------------------- /typescript-cli/motherhen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/motherhen.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/FakeInquirer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/FakeInquirer.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/PartialInquirer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/PartialInquirer.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/PromiseTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/PromiseTypes.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/TempDirWithCleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/TempDirWithCleanup.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/fileExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/fileExists.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/getModuleDefault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/getModuleDefault.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/inquirer-registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/inquirer-registration.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/projectRoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/projectRoot.ts -------------------------------------------------------------------------------- /typescript-cli/utilities/readDirsDeep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajvincent/motherhen/HEAD/typescript-cli/utilities/readDirsDeep.ts --------------------------------------------------------------------------------