projen 0.45.2 → 0.46.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +1256 -472
- package/API.md +348 -61
- package/README.md +1 -0
- package/dist/changelog.md +7 -0
- package/dist/releasetag.txt +1 -0
- package/dist/version.txt +1 -0
- package/docs/build.md +55 -0
- package/docs/deps.md +18 -0
- package/docs/mutable-builds.md +0 -27
- package/docs/publisher.md +35 -1
- package/lib/awscdk/auto-discover.js +1 -1
- package/lib/awscdk/awscdk-app-ts.js +1 -1
- package/lib/awscdk/awscdk-construct.js +2 -2
- package/lib/awscdk/awscdk-deps.js +1 -1
- package/lib/awscdk/cdk-config.js +1 -1
- package/lib/awscdk/cdk-tasks.js +1 -1
- package/lib/awscdk/integration-test.js +5 -2
- package/lib/awscdk/java-app.js +1 -1
- package/lib/awscdk/lambda-function.js +2 -2
- package/lib/build/build-workflow.d.ts +125 -0
- package/lib/build/build-workflow.js +217 -0
- package/lib/build/index.d.ts +1 -0
- package/lib/build/index.js +14 -0
- package/lib/cdk/construct-lib.js +1 -1
- package/lib/cdk/consts.d.ts +14 -0
- package/lib/cdk/consts.js +37 -0
- package/lib/cdk/jsii-docgen.js +1 -1
- package/lib/cdk/jsii-project.d.ts +13 -0
- package/lib/cdk/jsii-project.js +107 -44
- package/lib/cdk8s/cdk8s-app-ts.js +1 -1
- package/lib/cdk8s/cdk8s-construct.js +1 -1
- package/lib/cdktf/cdktf-construct.js +1 -1
- package/lib/component.js +1 -1
- package/lib/dependencies.js +4 -10
- package/lib/dev-env.js +1 -1
- package/lib/docker-compose.js +2 -2
- package/lib/file.js +1 -1
- package/lib/gitattributes.js +1 -1
- package/lib/github/auto-approve.js +1 -1
- package/lib/github/auto-merge.js +1 -1
- package/lib/github/constants.js +2 -1
- package/lib/github/dependabot.js +1 -1
- package/lib/github/github-project.js +1 -1
- package/lib/github/github.d.ts +6 -0
- package/lib/github/github.js +11 -2
- package/lib/github/mergify.js +1 -1
- package/lib/github/pr-template.js +1 -1
- package/lib/github/pull-request-lint.js +1 -1
- package/lib/github/stale.js +1 -1
- package/lib/github/task-workflow.d.ts +4 -0
- package/lib/github/task-workflow.js +6 -5
- package/lib/github/workflows-model.d.ts +62 -0
- package/lib/github/workflows-model.js +1 -1
- package/lib/github/workflows.d.ts +8 -0
- package/lib/github/workflows.js +39 -3
- package/lib/gitpod.js +1 -1
- package/lib/ignore-file.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/ini.js +1 -1
- package/lib/java/java-project.js +1 -1
- package/lib/java/junit.js +1 -1
- package/lib/java/maven-compile.js +1 -1
- package/lib/java/maven-packaging.js +1 -1
- package/lib/java/maven-sample.js +1 -1
- package/lib/java/pom.js +1 -1
- package/lib/java/projenrc.js +1 -1
- package/lib/javascript/bundler.js +1 -1
- package/lib/javascript/eslint.js +1 -1
- package/lib/javascript/jest.js +1 -1
- package/lib/javascript/node-package.js +1 -1
- package/lib/javascript/node-project.d.ts +46 -7
- package/lib/javascript/node-project.js +64 -129
- package/lib/javascript/npm-config.js +1 -1
- package/lib/javascript/projenrc.js +1 -1
- package/lib/javascript/typescript-config.js +1 -1
- package/lib/javascript/upgrade-dependencies.d.ts +15 -0
- package/lib/javascript/upgrade-dependencies.js +18 -6
- package/lib/json.js +1 -1
- package/lib/license.js +1 -1
- package/lib/logger.js +1 -1
- package/lib/makefile.js +1 -1
- package/lib/object-file.js +1 -1
- package/lib/project-build.js +1 -1
- package/lib/project.js +1 -1
- package/lib/projects.js +1 -1
- package/lib/projenrc-json.js +1 -1
- package/lib/python/pip.js +1 -1
- package/lib/python/poetry.js +2 -2
- package/lib/python/projenrc.js +1 -1
- package/lib/python/pytest.js +1 -1
- package/lib/python/python-project.js +1 -1
- package/lib/python/python-sample.js +1 -1
- package/lib/python/requirements-file.js +1 -1
- package/lib/python/setuppy.js +1 -1
- package/lib/python/setuptools.js +1 -1
- package/lib/python/venv.js +1 -1
- package/lib/readme.js +1 -1
- package/lib/release/publisher.d.ts +39 -7
- package/lib/release/publisher.js +51 -43
- package/lib/release/release-trigger.js +1 -1
- package/lib/release/release.d.ts +20 -8
- package/lib/release/release.js +3 -2
- package/lib/sample-file.js +2 -2
- package/lib/semver.js +1 -1
- package/lib/source-code.js +1 -1
- package/lib/task-runtime.js +1 -1
- package/lib/task.js +1 -1
- package/lib/tasks.js +1 -1
- package/lib/testing.js +1 -1
- package/lib/textfile.js +1 -1
- package/lib/toml.js +1 -1
- package/lib/typescript/projenrc.js +1 -1
- package/lib/typescript/typescript-typedoc.js +1 -1
- package/lib/typescript/typescript.d.ts +0 -7
- package/lib/typescript/typescript.js +23 -28
- package/lib/version.js +1 -1
- package/lib/vscode/devcontainer.js +1 -1
- package/lib/vscode/launch-config.js +1 -1
- package/lib/vscode/vscode.js +1 -1
- package/lib/web/next.js +3 -3
- package/lib/web/postcss.js +1 -1
- package/lib/web/react.js +6 -6
- package/lib/web/tailwind.js +1 -1
- package/lib/xmlfile.js +1 -1
- package/lib/yaml.js +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/README.md +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/assert.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/async_hooks.d.ts +7 -3
- package/node_modules/xmlbuilder2/node_modules/@types/node/buffer.d.ts +9 -9
- package/node_modules/xmlbuilder2/node_modules/@types/node/child_process.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/cluster.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/console.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/crypto.d.ts +2 -2
- package/node_modules/xmlbuilder2/node_modules/@types/node/dgram.d.ts +2 -2
- package/node_modules/xmlbuilder2/node_modules/@types/node/diagnostics_channel.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/dns/promises.d.ts +12 -10
- package/node_modules/xmlbuilder2/node_modules/@types/node/dns.d.ts +17 -12
- package/node_modules/xmlbuilder2/node_modules/@types/node/domain.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/events.d.ts +2 -2
- package/node_modules/xmlbuilder2/node_modules/@types/node/fs/promises.d.ts +5 -5
- package/node_modules/xmlbuilder2/node_modules/@types/node/fs.d.ts +62 -11
- package/node_modules/xmlbuilder2/node_modules/@types/node/http.d.ts +20 -3
- package/node_modules/xmlbuilder2/node_modules/@types/node/http2.d.ts +3 -3
- package/node_modules/xmlbuilder2/node_modules/@types/node/https.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/index.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/inspector.d.ts +4 -5
- package/node_modules/xmlbuilder2/node_modules/@types/node/net.d.ts +11 -11
- package/node_modules/xmlbuilder2/node_modules/@types/node/os.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/package.json +2 -2
- package/node_modules/xmlbuilder2/node_modules/@types/node/path.d.ts +9 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/perf_hooks.d.ts +6 -4
- package/node_modules/xmlbuilder2/node_modules/@types/node/punycode.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/querystring.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/readline.d.ts +121 -14
- package/node_modules/xmlbuilder2/node_modules/@types/node/repl.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/stream/web.d.ts +3 -65
- package/node_modules/xmlbuilder2/node_modules/@types/node/stream.d.ts +2 -2
- package/node_modules/xmlbuilder2/node_modules/@types/node/string_decoder.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/timers.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/tls.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/trace_events.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/tty.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/url.d.ts +58 -18
- package/node_modules/xmlbuilder2/node_modules/@types/node/util.d.ts +3 -3
- package/node_modules/xmlbuilder2/node_modules/@types/node/v8.d.ts +3 -3
- package/node_modules/xmlbuilder2/node_modules/@types/node/vm.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/wasi.d.ts +1 -1
- package/node_modules/xmlbuilder2/node_modules/@types/node/worker_threads.d.ts +4 -4
- package/node_modules/xmlbuilder2/node_modules/@types/node/zlib.d.ts +1 -1
- package/package.json +11 -7
- package/docs/project.md +0 -30
package/.jsii
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"stability": "experimental"
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://github.com/projen/projen.git",
|
|
31
|
-
"jsiiVersion": "1.
|
|
31
|
+
"jsiiVersion": "1.50.0 (build d1830a4)",
|
|
32
32
|
"keywords": [
|
|
33
33
|
"cdk",
|
|
34
34
|
"cicd",
|
|
@@ -43,11 +43,12 @@
|
|
|
43
43
|
"pacmak": {
|
|
44
44
|
"hasDefaultInterfaces": true
|
|
45
45
|
}
|
|
46
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"tscRootDir": "src"
|
|
47
48
|
},
|
|
48
49
|
"name": "projen",
|
|
49
50
|
"readme": {
|
|
50
|
-
"markdown": "# projen\n\n\n\n[](https://opensource.org/licenses/Apache-2.0)\n[](https://gitpod.io/#https://github.com/projen/projen)\n\n\n\n<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n[](#contributors-)\n<!-- ALL-CONTRIBUTORS-BADGE:END -->\n\nDefine and maintain complex project configuration through code.\n\n> JOIN THE [#TemplatesAreEvil] MOVEMENT!\n\n[#TemplatesAreEvil]: https://twitter.com/search?q=%23TemplatesAreEvil\n\n*projen* synthesizes project configuration files such as `package.json`,\n`tsconfig.json`, `.gitignore`, GitHub Workflows, eslint, jest, etc from a\nwell-typed definition written in JavaScript.\n\nCheck out [this talk](https://youtu.be/SOWMPzXtTCw) about projen.\n\nAs opposed to existing templating/scaffolding tools, *projen* is not a one-off\ngenerator. Synthesized files should never be manually edited (in fact, projen\nenforces that). To modify your project setup, users interact with rich\nstrongly-typed class and execute `projen` to update their project configuration\nfiles.\n\n## Getting Started\n\nTo create a new project, run the following command and follow the instructions:\n\n```console\n$ mkdir my-project\n$ cd my-project\n$ git init\n$ npx projen new PROJECT-TYPE\n🤖 Synthesizing project...\n...\n```\n\nCurrently supported project types (use `npx projen new` without a type for a\nlist):\n\n<!-- <macro exec=\"node ./scripts/readme-projects.js\"> -->\n* [awscdk-app-java](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdkjavaapp) - AWS CDK app in Java.\n* [awscdk-app-ts](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdktypescriptapp) - AWS CDK app in TypeScript.\n* [awscdk-construct](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdkconstructlibrary) - AWS CDK construct library project.\n* [cdk8s-app-ts](https://github.com/projen/projen/blob/main/API.md#projen-cdk8s-cdk8stypescriptapp) - CDK8s app in TypeScript.\n* [cdk8s-construct](https://github.com/projen/projen/blob/main/API.md#projen-cdk8s-constructlibrarycdk8s) - CDK8s construct library project.\n* [cdktf-construct](https://github.com/projen/projen/blob/main/API.md#projen-cdktf-constructlibrarycdktf) - CDKTF construct library project.\n* [java](https://github.com/projen/projen/blob/main/API.md#projen-java-javaproject) - Java project.\n* [jsii](https://github.com/projen/projen/blob/main/API.md#projen-cdk-jsiiproject) - Multi-language jsii library project.\n* [nextjs](https://github.com/projen/projen/blob/main/API.md#projen-web-nextjsproject) - Next.js project without TypeScript.\n* [nextjs-ts](https://github.com/projen/projen/blob/main/API.md#projen-web-nextjstypescriptproject) - Next.js project with TypeScript.\n* [node](https://github.com/projen/projen/blob/main/API.md#projen-javascript-nodeproject) - Node.js project.\n* [project](https://github.com/projen/projen/blob/main/API.md#projen-project) - Base project.\n* [python](https://github.com/projen/projen/blob/main/API.md#projen-python-pythonproject) - Python project.\n* [react](https://github.com/projen/projen/blob/main/API.md#projen-web-reactproject) - React project without TypeScript.\n* [react-ts](https://github.com/projen/projen/blob/main/API.md#projen-web-reacttypescriptproject) - React project with TypeScript.\n* [typescript](https://github.com/projen/projen/blob/main/API.md#projen-typescript-typescriptproject) - TypeScript project.\n* [typescript-app](https://github.com/projen/projen/blob/main/API.md#projen-typescript-typescriptappproject) - TypeScript app.\n<!-- </macro> -->\n\n> Use `npx projen new PROJECT-TYPE --help` to view a list of command line\n> switches that allows you to specify most project options during bootstrapping.\n> For example: `npx projen new jsii --author-name \"Jerry Berry\"`.\n\nThe `new` command will create a `.projenrc.js` file which looks like this for\n`jsii` projects:\n\n```js\nconst { JsiiProject } = require('projen');\n\nconst project = new JsiiProject({\n authorAddress: \"elad.benisrael@gmail.com\",\n authorName: \"Elad Ben-Israel\",\n name: \"foobar\",\n repository: \"https://github.com/eladn/foobar.git\",\n});\n\nproject.synth();\n```\n\nThis program instantiates the project type with minimal setup, and then calls\n`synth()` to synthesize the project files. By default, the `new` command will\nalso execute this program, which will result in a fully working project.\n\nOnce your project is created, you can configure your project by editing\n`.projenrc.js` and re-running `npx projen` to synthesize again.\n\n> The files generated by _projen_ are considered an \"implementation detail\" and\n> _projen_ protects them from being manually edited (most files are marked\n> read-only, and an \"anti tamper\" check is configured in the CI build workflow\n> to ensure that files are not updated during build).\n\nFor example, to setup PyPI publishing in `jsii` projects, you can use\n[`python option`](https://github.com/eladb/projen/blob/master/API.md#projen-jsiipythontarget):\n\n```js\nconst project = new JsiiProject({\n // ...\n python: {\n distName: \"mydist\",\n module: \"my_module\",\n }\n});\n```\n\nRun:\n\n```shell\nnpx projen\n```\n\nAnd you'll notice that your `package.json` file now contains a `python` section in\nit's `jsii` config and the GitHub `release.yml` workflow includes a PyPI\npublishing step.\n\nWe recommend to put this in your shell profile, so you can simply run `pj` every\ntime you update `.projenrc.js`:\n\n```bash\nalias pj='npx projen'\n```\n\nMost projects come with an assortment of **tasks** that handle various\ndevelopment activities, from compiling to publishing. Tasks can be and composed\ntogether, and can be run as local commands or turned into GitHub workflows. You\ncan list all tasks with `npx projen --help`:\n\n```shell\n$ npx projen --help\nprojen [command]\n\nCommands:\n projen new [PROJECT-TYPE-NAME] [OPTIONS] Creates a new projen project\n projen clobber hard resets to HEAD of origin and cleans the local repo\n projen compile Only compile\n projen test:compile compiles the test code\n projen test Run tests\n projen build Full release build (test+compile)\n projen upgrade-dependencies upgrade dependencies\n projen upgrade-projen upgrade projen\n...\n```\n\nThe `build` task is the same task that's executed in your CI builds. It\ntypically compiles, lints, tests and packages your module for distribution.\n\n### Shell Completions\nIf installed as a global package, `projen` includes rich shell tab-completion support. To enable this in your shell, run:\n```shell\n# Bash\nprojen completion >> ~/.bashrc\n\n# ZSH\nprojen completion >> ~/.zshrc\n```\n## Features\n\nSome examples for features built-in to project types:\n\n* Fully synthesize `package.json`\n* Standard npm scripts like `compile`, `build`, `test`, `package`\n* eslint\n* Jest\n* jsii: compile, package, api compatibility checks, API.md\n* Bump & release scripts with CHANGELOG generation based on conventional commits (manual releases are currently broken! [#726](https://github.com/projen/projen/issues/726))\n* Automated PR builds\n* Automated releases to npm, maven, NuGet and PyPI\n* Mergify configuration\n* LICENSE file generation\n* gitignore + npmignore management\n* Node \"engines\" support with coupling to CI build environment and @types/node\n* Anti-tamper: CI builds will fail if a synthesized file is modified manually\n\n## API Reference\n\nSee [API Reference](./API.md) for API details.\n\nIn addition, several projen components and project types are explained with examples in [/docs](./docs) (currently a work in progress!).\n\n## Ecosystem\n\n_projen_ takes a \"batteries included\" approach and aims to offer dozens of different project types out of\nthe box (we are just getting started). Think `projen new react`, `projen new angular`, `projen new java-maven`,\n`projen new awscdk-typescript`, `projen new cdk8s-python` (nothing in projen is tied to javascript or npm!)...\n\nAdding new project types is as simple as submitting a pull request to this repo and exporting a class that\nextends `projen.Project` (or one of it's derivatives). Projen automatically discovers project types so your\ntype will immediately be available in `projen new`.\n\n### Projects in external modules\n\n_projen_ is bundled with many project types out of the box, but it can also work\nwith project types and components defined in external jsii modules (the reason\nwe need jsii is because projen uses the jsii metadata to discover project types\n& options in projen new).\n\nSay we have a module in npm called `projen-vuejs` which includes a single project\ntype for vue.js:\n\n```bash\n$ npx projen new --from projen-vuejs\n```\n\nIf the referenced module includes multiple project types, the type is required.\nSwitches can also be used to specify initial values based on the project type\nAPIs. You can also use any package syntax supported by [yarn\nadd](https://classic.yarnpkg.com/en/docs/cli/add#toc-adding-dependencies) like\n`projen-vuejs@1.2.3`, `file:/path/to/local/folder`,\n`git@github.com/awesome/projen-vuejs#1.2.3`, etc.\n\n```bash\n$ npx projen new --from projen-vuejs@^2 vuejs-ts --description \"my awesome vue project\"\n```\n\nUnder the hood, `projen new` will install the `projen-vuejs` module from npm\n(version 2.0.0 and above), discover the project types in it and bootstrap the\n`vuejs-ts` project type. It will assign the value `\"my awesome vue project\"` to\nthe `description` field. If you examine your `.projenrc.js` file, you'll see\nthat `projen-vuejs` is defined as a dev dependency:\n\n```javascript\nconst { VueJsProject } = require('projen-vuejs');\n\nconst project = new VueJsProject({\n name: 'my-vuejs-sample',\n description: \"my awesome vue project\",\n // ...\n devDeps: [\n 'projen-vuejs'\n ]\n});\n\nproject.synth();\n```\n\n## Roadmap\n\nSee [Vision](./VISION.md).\n\n## FAQ\n\n### Do I have to write my configuration in JavaScript?\n\nNot at all! JavaScript is the default, but it's also possible to write it in\nJava, TypeScript, or even JSON. Python support is also planned. This is made\npossible by the [jsii](https://github.com/aws/jsii) library which allows us\nto write APIs once and generate libraries in several languages. You can choose\na different language by passing the `--projenrc-ts`, `--projenrc-java`, or\n`--projenrc-json` flags when running `projen new`.\n\nNote: using a `.projenrc.json` file to specify configuration only allows\naccessing a subset of the entire API - the options which are passed to the\nconstructor of each project type.\n\n## Contributions\n\nContributions of all kinds are welcome! Check out our [contributor's\nguide](./CONTRIBUTING.md) and our [code of conduct](./CODE_OF_CONDUCT.md).\n\nFor a quick start, check out a development environment:\n\n```bash\n$ git clone git@github.com:projen/projen\n$ cd projen\n$ yarn\n$ yarn watch # compile in the background\n```\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n <tr>\n <td align=\"center\"><a href=\"http://eladb.github.com/\"><img src=\"https://avatars3.githubusercontent.com/u/598796?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Elad Ben-Israel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eladb\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://rybicki.io/\"><img src=\"https://avatars2.githubusercontent.com/u/5008987?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christopher Rybicki</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Chriscbr\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://p6m7g8.github.io/\"><img src=\"https://avatars0.githubusercontent.com/u/34295?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Philip M. Gollucci</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pgollucci\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hoegertn\"><img src=\"https://avatars2.githubusercontent.com/u/1287829?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thorsten Hoeger</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hoegertn\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/kcwinner\"><img src=\"https://avatars3.githubusercontent.com/u/2728868?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kenneth Winner</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=kcwinner\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/JordanSinko\"><img src=\"https://avatars2.githubusercontent.com/u/10212966?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jordan Sinko</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=JordanSinko\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/misterjoshua\"><img src=\"https://avatars2.githubusercontent.com/u/644092?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Josh Kellendonk</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=misterjoshua\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/andrestone\"><img src=\"https://avatars1.githubusercontent.com/u/7958086?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>andrestone</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=andrestone\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://pallares.io/\"><img src=\"https://avatars3.githubusercontent.com/u/1077520?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Cristian Pallarés</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=skyrpex\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/jogold\"><img src=\"https://avatars2.githubusercontent.com/u/12623249?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jonathan Goldwasser</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jogold\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://www.matthewbonig.com/\"><img src=\"https://avatars2.githubusercontent.com/u/1559437?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matthew Bonig</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mbonig\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/pahud\"><img src=\"https://avatars3.githubusercontent.com/u/278432?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Pahud Hsieh</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pahud\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/adamelmore\"><img src=\"https://avatars2.githubusercontent.com/u/2363879?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adam Elmore</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=adamelmore\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/abelmokadem\"><img src=\"https://avatars0.githubusercontent.com/u/9717944?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ash</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=abelmokadem\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/jmourelos\"><img src=\"https://avatars3.githubusercontent.com/u/3878434?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jacob</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jmourelos\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/bigkraig\"><img src=\"https://avatars1.githubusercontent.com/u/508403?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kraig Amador</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bigkraig\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mmuller88\"><img src=\"https://avatars0.githubusercontent.com/u/18393842?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Martin Muller</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mmuller88\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://tlakomy.com/\"><img src=\"https://avatars2.githubusercontent.com/u/16646517?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tomasz Łakomy</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=tlakomy\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/john-tipper\"><img src=\"https://avatars2.githubusercontent.com/u/9730398?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>john-tipper</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=john-tipper\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/henrysachs\"><img src=\"https://avatars0.githubusercontent.com/u/17173951?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Henry Sachs</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=henrysachs\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/eganjs\"><img src=\"https://avatars3.githubusercontent.com/u/6639482?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Joseph Egan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eganjs\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://skorfmann.com/\"><img src=\"https://avatars1.githubusercontent.com/u/136789?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sebastian Korfmann</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=skorfmann\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://www.callant.net/\"><img src=\"https://avatars1.githubusercontent.com/u/5915843?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Bart Callant</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bartcallant\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/campionfellin\"><img src=\"https://avatars3.githubusercontent.com/u/11984923?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Campion Fellin</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=campionfellin\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/gradybarrett\"><img src=\"https://avatars1.githubusercontent.com/u/1140074?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Grady Barrett</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=gradybarrett\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/HassanMahmud\"><img src=\"https://avatars3.githubusercontent.com/u/58504381?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Mahmud</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=HassanMahmud\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dk.linkedin.com/in/hassanmahmud93\"><img src=\"https://avatars1.githubusercontent.com/u/7426703?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Mahmud</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hass123uk\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://joapy.com/\"><img src=\"https://avatars3.githubusercontent.com/u/325306?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jake Pearson</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jakepearson\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/JeremyJonas\"><img src=\"https://avatars1.githubusercontent.com/u/464119?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jeremy Jonas</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=JeremyJonas\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dev.to/martzcodes\"><img src=\"https://avatars1.githubusercontent.com/u/978362?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matt Martz</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=martzcodes\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/fongie\"><img src=\"https://avatars1.githubusercontent.com/u/19932622?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Max Körlinge</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=fongie\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://blog.neilkuan.dev/\"><img src=\"https://avatars2.githubusercontent.com/u/46012524?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Neil Kuan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=guan840912\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dynobase.dev/\"><img src=\"https://avatars3.githubusercontent.com/u/3391616?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Rafal Wilinski</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=RafalWilinski\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://keybase.io/romainmuller\"><img src=\"https://avatars2.githubusercontent.com/u/411689?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Romain Marcadier</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=RomainMuller\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/thomasklinger1234\"><img src=\"https://avatars1.githubusercontent.com/u/39558817?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thomas Klinger</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=thomasklinger1234\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/gwriss\"><img src=\"https://avatars2.githubusercontent.com/u/1842089?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tobias</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=gwriss\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/flyingImer\"><img src=\"https://avatars0.githubusercontent.com/u/1973868?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>flyingImer</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=flyingImer\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/Hunter-Thompson\"><img src=\"https://avatars.githubusercontent.com/u/20844961?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b> Aatman </b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Hunter-Thompson\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mmcculloh-dms\"><img src=\"https://avatars.githubusercontent.com/u/68597641?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mark McCulloh</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mmcculloh-dms\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/aisamu\"><img src=\"https://avatars.githubusercontent.com/u/431708?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Samuel Tschiedel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=aisamu\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/iliapolo\"><img src=\"https://avatars.githubusercontent.com/u/1428812?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eli Polonsky</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=iliapolo\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://unsubstantiated.blog/\"><img src=\"https://avatars.githubusercontent.com/u/1308885?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alexander Steppke</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Miradorn\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/kanatti\"><img src=\"https://avatars.githubusercontent.com/u/8623654?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Balagopal Kanattil</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=kanatti\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://twitter.com/bracki\"><img src=\"https://avatars.githubusercontent.com/u/49786?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jan Brauer</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bracki\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://polothy.github.io/\"><img src=\"https://avatars.githubusercontent.com/u/634657?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mark Nielsen</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=polothy\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/MrArnoldPalmer\"><img src=\"https://avatars.githubusercontent.com/u/7221111?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mitchell Valine</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=MrArnoldPalmer\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://blog.neilkuan.net/\"><img src=\"https://avatars.githubusercontent.com/u/46012524?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Neil Kuan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=neilkuan\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://garbe.io/\"><img src=\"https://avatars.githubusercontent.com/u/721899?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Philipp Garbe</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pgarbe\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://selfstructured.com/\"><img src=\"https://avatars.githubusercontent.com/u/361689?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Shawn MacIntyre</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=smacintyre\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/tobias-bardino\"><img src=\"https://avatars.githubusercontent.com/u/1842089?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tobias</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=tobias-bardino\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/yglcode\"><img src=\"https://avatars.githubusercontent.com/u/11893614?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Yigong Liu</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=yglcode\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/eduardomourar\"><img src=\"https://avatars.githubusercontent.com/u/16357187?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eduardo Rodrigues</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eduardomourar\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hassanazharkhan\"><img src=\"https://avatars.githubusercontent.com/u/57677979?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Azhar</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hassanazharkhan\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://www.linkedin.com/in/julian-michel-812a223a/\"><img src=\"https://avatars.githubusercontent.com/u/15660169?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Julian Michel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jumic\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/lmarsden\"><img src=\"https://avatars.githubusercontent.com/u/51232932?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>lmarsden</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=lmarsden\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/adrianmace\"><img src=\"https://avatars.githubusercontent.com/u/5071859?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adrian Mace</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=adrianmace\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/mKeRix\"><img src=\"https://avatars.githubusercontent.com/u/770596?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Heiko Rothe</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mKeRix\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hyandell\"><img src=\"https://avatars.githubusercontent.com/u/477715?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Henri Yandell</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hyandell\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mwg-rea\"><img src=\"https://avatars.githubusercontent.com/u/82480228?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matthew Gamble</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mwg-rea\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://willdady.com/\"><img src=\"https://avatars.githubusercontent.com/u/204259?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Will Dady</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=willdady\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/msessa\"><img src=\"https://avatars.githubusercontent.com/u/1912143?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matteo Sessa</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=msessa\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/Hi-Fi\"><img src=\"https://avatars.githubusercontent.com/u/1499780?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Juho Saarinen</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Hi-Fi\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/njlynch\"><img src=\"https://avatars.githubusercontent.com/u/1376292?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Nick Lynch</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=njlynch\" title=\"Code\">💻</a></td>\n </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\n## License\n\nDistributed under the [Apache-2.0](./LICENSE) license.\n"
|
|
51
|
+
"markdown": "# projen\n\n\n\n[](https://opensource.org/licenses/Apache-2.0)\n[](https://gitpod.io/#https://github.com/projen/projen)\n\n\n\n<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->\n[](#contributors-)\n<!-- ALL-CONTRIBUTORS-BADGE:END -->\n\nDefine and maintain complex project configuration through code.\n\n> JOIN THE [#TemplatesAreEvil] MOVEMENT!\n\n[#TemplatesAreEvil]: https://twitter.com/search?q=%23TemplatesAreEvil\n\n*projen* synthesizes project configuration files such as `package.json`,\n`tsconfig.json`, `.gitignore`, GitHub Workflows, eslint, jest, etc from a\nwell-typed definition written in JavaScript.\n\nCheck out [this talk](https://youtu.be/SOWMPzXtTCw) about projen.\n\nAs opposed to existing templating/scaffolding tools, *projen* is not a one-off\ngenerator. Synthesized files should never be manually edited (in fact, projen\nenforces that). To modify your project setup, users interact with rich\nstrongly-typed class and execute `projen` to update their project configuration\nfiles.\n\n## Getting Started\n\nTo create a new project, run the following command and follow the instructions:\n\n```console\n$ mkdir my-project\n$ cd my-project\n$ git init\n$ npx projen new PROJECT-TYPE\n🤖 Synthesizing project...\n...\n```\n\nCurrently supported project types (use `npx projen new` without a type for a\nlist):\n\n<!-- <macro exec=\"node ./scripts/readme-projects.js\"> -->\n* [awscdk-app-java](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdkjavaapp) - AWS CDK app in Java.\n* [awscdk-app-ts](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdktypescriptapp) - AWS CDK app in TypeScript.\n* [awscdk-construct](https://github.com/projen/projen/blob/main/API.md#projen-awscdk-awscdkconstructlibrary) - AWS CDK construct library project.\n* [cdk8s-app-ts](https://github.com/projen/projen/blob/main/API.md#projen-cdk8s-cdk8stypescriptapp) - CDK8s app in TypeScript.\n* [cdk8s-construct](https://github.com/projen/projen/blob/main/API.md#projen-cdk8s-constructlibrarycdk8s) - CDK8s construct library project.\n* [cdktf-construct](https://github.com/projen/projen/blob/main/API.md#projen-cdktf-constructlibrarycdktf) - CDKTF construct library project.\n* [java](https://github.com/projen/projen/blob/main/API.md#projen-java-javaproject) - Java project.\n* [jsii](https://github.com/projen/projen/blob/main/API.md#projen-cdk-jsiiproject) - Multi-language jsii library project.\n* [nextjs](https://github.com/projen/projen/blob/main/API.md#projen-web-nextjsproject) - Next.js project without TypeScript.\n* [nextjs-ts](https://github.com/projen/projen/blob/main/API.md#projen-web-nextjstypescriptproject) - Next.js project with TypeScript.\n* [node](https://github.com/projen/projen/blob/main/API.md#projen-javascript-nodeproject) - Node.js project.\n* [project](https://github.com/projen/projen/blob/main/API.md#projen-project) - Base project.\n* [python](https://github.com/projen/projen/blob/main/API.md#projen-python-pythonproject) - Python project.\n* [react](https://github.com/projen/projen/blob/main/API.md#projen-web-reactproject) - React project without TypeScript.\n* [react-ts](https://github.com/projen/projen/blob/main/API.md#projen-web-reacttypescriptproject) - React project with TypeScript.\n* [typescript](https://github.com/projen/projen/blob/main/API.md#projen-typescript-typescriptproject) - TypeScript project.\n* [typescript-app](https://github.com/projen/projen/blob/main/API.md#projen-typescript-typescriptappproject) - TypeScript app.\n<!-- </macro> -->\n\n> Use `npx projen new PROJECT-TYPE --help` to view a list of command line\n> switches that allows you to specify most project options during bootstrapping.\n> For example: `npx projen new jsii --author-name \"Jerry Berry\"`.\n\nThe `new` command will create a `.projenrc.js` file which looks like this for\n`jsii` projects:\n\n```js\nconst { JsiiProject } = require('projen');\n\nconst project = new JsiiProject({\n authorAddress: \"elad.benisrael@gmail.com\",\n authorName: \"Elad Ben-Israel\",\n name: \"foobar\",\n repository: \"https://github.com/eladn/foobar.git\",\n});\n\nproject.synth();\n```\n\nThis program instantiates the project type with minimal setup, and then calls\n`synth()` to synthesize the project files. By default, the `new` command will\nalso execute this program, which will result in a fully working project.\n\nOnce your project is created, you can configure your project by editing\n`.projenrc.js` and re-running `npx projen` to synthesize again.\n\n> The files generated by _projen_ are considered an \"implementation detail\" and\n> _projen_ protects them from being manually edited (most files are marked\n> read-only, and an \"anti tamper\" check is configured in the CI build workflow\n> to ensure that files are not updated during build).\n\nFor example, to setup PyPI publishing in `jsii` projects, you can use\n[`python option`](https://github.com/eladb/projen/blob/master/API.md#projen-jsiipythontarget):\n\n```js\nconst project = new JsiiProject({\n // ...\n python: {\n distName: \"mydist\",\n module: \"my_module\",\n }\n});\n```\n\nRun:\n\n```shell\nnpx projen\n```\n\nAnd you'll notice that your `package.json` file now contains a `python` section in\nit's `jsii` config and the GitHub `release.yml` workflow includes a PyPI\npublishing step.\n\nWe recommend to put this in your shell profile, so you can simply run `pj` every\ntime you update `.projenrc.js`:\n\n```bash\nalias pj='npx projen'\n```\n\nMost projects come with an assortment of **tasks** that handle various\ndevelopment activities, from compiling to publishing. Tasks can be and composed\ntogether, and can be run as local commands or turned into GitHub workflows. You\ncan list all tasks with `npx projen --help`:\n\n```shell\n$ npx projen --help\nprojen [command]\n\nCommands:\n projen new [PROJECT-TYPE-NAME] [OPTIONS] Creates a new projen project\n projen clobber hard resets to HEAD of origin and cleans the local repo\n projen compile Only compile\n projen test:compile compiles the test code\n projen test Run tests\n projen build Full release build (test+compile)\n projen upgrade-dependencies upgrade dependencies\n projen upgrade-projen upgrade projen\n...\n```\n\nThe `build` task is the same task that's executed in your CI builds. It\ntypically compiles, lints, tests and packages your module for distribution.\n\n### Shell Completions\nIf installed as a global package, `projen` includes rich shell tab-completion support. To enable this in your shell, run:\n```shell\n# Bash\nprojen completion >> ~/.bashrc\n\n# ZSH\nprojen completion >> ~/.zshrc\n```\n## Features\n\nSome examples for features built-in to project types:\n\n* Fully synthesize `package.json`\n* Standard npm scripts like `compile`, `build`, `test`, `package`\n* eslint\n* Jest\n* jsii: compile, package, api compatibility checks, API.md\n* Bump & release scripts with CHANGELOG generation based on conventional commits (manual releases are currently broken! [#726](https://github.com/projen/projen/issues/726))\n* Automated PR builds\n* Automated releases to npm, maven, NuGet and PyPI\n* Mergify configuration\n* LICENSE file generation\n* gitignore + npmignore management\n* Node \"engines\" support with coupling to CI build environment and @types/node\n* Anti-tamper: CI builds will fail if a synthesized file is modified manually\n\n## API Reference\n\nSee [API Reference](./API.md) for API details.\n\nIn addition, several projen components and project types are explained with examples in [/docs](./docs) (currently a work in progress!).\n\n## Ecosystem\n\n_projen_ takes a \"batteries included\" approach and aims to offer dozens of different project types out of\nthe box (we are just getting started). Think `projen new react`, `projen new angular`, `projen new java-maven`,\n`projen new awscdk-typescript`, `projen new cdk8s-python` (nothing in projen is tied to javascript or npm!)...\n\nAdding new project types is as simple as submitting a pull request to this repo and exporting a class that\nextends `projen.Project` (or one of it's derivatives). Projen automatically discovers project types so your\ntype will immediately be available in `projen new`.\n\n### Projects in external modules\n\n_projen_ is bundled with many project types out of the box, but it can also work\nwith project types and components defined in external jsii modules (the reason\nwe need jsii is because projen uses the jsii metadata to discover project types\n& options in projen new).\n\nSay we have a module in npm called `projen-vuejs` which includes a single project\ntype for vue.js:\n\n```bash\n$ npx projen new --from projen-vuejs\n```\n\nIf the referenced module includes multiple project types, the type is required.\nSwitches can also be used to specify initial values based on the project type\nAPIs. You can also use any package syntax supported by [yarn\nadd](https://classic.yarnpkg.com/en/docs/cli/add#toc-adding-dependencies) like\n`projen-vuejs@1.2.3`, `file:/path/to/local/folder`,\n`git@github.com/awesome/projen-vuejs#1.2.3`, etc.\n\n```bash\n$ npx projen new --from projen-vuejs@^2 vuejs-ts --description \"my awesome vue project\"\n```\n\nUnder the hood, `projen new` will install the `projen-vuejs` module from npm\n(version 2.0.0 and above), discover the project types in it and bootstrap the\n`vuejs-ts` project type. It will assign the value `\"my awesome vue project\"` to\nthe `description` field. If you examine your `.projenrc.js` file, you'll see\nthat `projen-vuejs` is defined as a dev dependency:\n\n```javascript\nconst { VueJsProject } = require('projen-vuejs');\n\nconst project = new VueJsProject({\n name: 'my-vuejs-sample',\n description: \"my awesome vue project\",\n // ...\n devDeps: [\n 'projen-vuejs'\n ]\n});\n\nproject.synth();\n```\n\n## Roadmap\n\nSee [Vision](./VISION.md).\n\n## FAQ\n\n### Do I have to write my configuration in JavaScript?\n\nNot at all! JavaScript is the default, but it's also possible to write it in\nJava, TypeScript, or even JSON. Python support is also planned. This is made\npossible by the [jsii](https://github.com/aws/jsii) library which allows us\nto write APIs once and generate libraries in several languages. You can choose\na different language by passing the `--projenrc-ts`, `--projenrc-java`, or\n`--projenrc-json` flags when running `projen new`.\n\nNote: using a `.projenrc.json` file to specify configuration only allows\naccessing a subset of the entire API - the options which are passed to the\nconstructor of each project type.\n\n## Contributions\n\nContributions of all kinds are welcome! Check out our [contributor's\nguide](./CONTRIBUTING.md) and our [code of conduct](./CODE_OF_CONDUCT.md).\n\nFor a quick start, check out a development environment:\n\n```bash\n$ git clone git@github.com:projen/projen\n$ cd projen\n$ yarn\n$ yarn watch # compile in the background\n```\n\nThanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n<!-- prettier-ignore-start -->\n<!-- markdownlint-disable -->\n<table>\n <tr>\n <td align=\"center\"><a href=\"http://eladb.github.com/\"><img src=\"https://avatars3.githubusercontent.com/u/598796?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Elad Ben-Israel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eladb\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://rybicki.io/\"><img src=\"https://avatars2.githubusercontent.com/u/5008987?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Christopher Rybicki</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Chriscbr\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://p6m7g8.github.io/\"><img src=\"https://avatars0.githubusercontent.com/u/34295?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Philip M. Gollucci</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pgollucci\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hoegertn\"><img src=\"https://avatars2.githubusercontent.com/u/1287829?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thorsten Hoeger</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hoegertn\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/kcwinner\"><img src=\"https://avatars3.githubusercontent.com/u/2728868?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kenneth Winner</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=kcwinner\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/JordanSinko\"><img src=\"https://avatars2.githubusercontent.com/u/10212966?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jordan Sinko</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=JordanSinko\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/misterjoshua\"><img src=\"https://avatars2.githubusercontent.com/u/644092?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Josh Kellendonk</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=misterjoshua\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/andrestone\"><img src=\"https://avatars1.githubusercontent.com/u/7958086?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>andrestone</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=andrestone\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://pallares.io/\"><img src=\"https://avatars3.githubusercontent.com/u/1077520?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Cristian Pallarés</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=skyrpex\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/jogold\"><img src=\"https://avatars2.githubusercontent.com/u/12623249?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jonathan Goldwasser</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jogold\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://www.matthewbonig.com/\"><img src=\"https://avatars2.githubusercontent.com/u/1559437?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matthew Bonig</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mbonig\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/pahud\"><img src=\"https://avatars3.githubusercontent.com/u/278432?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Pahud Hsieh</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pahud\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/adamelmore\"><img src=\"https://avatars2.githubusercontent.com/u/2363879?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adam Elmore</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=adamelmore\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/abelmokadem\"><img src=\"https://avatars0.githubusercontent.com/u/9717944?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Ash</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=abelmokadem\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/jmourelos\"><img src=\"https://avatars3.githubusercontent.com/u/3878434?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jacob</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jmourelos\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/bigkraig\"><img src=\"https://avatars1.githubusercontent.com/u/508403?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Kraig Amador</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bigkraig\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mmuller88\"><img src=\"https://avatars0.githubusercontent.com/u/18393842?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Martin Muller</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mmuller88\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://tlakomy.com/\"><img src=\"https://avatars2.githubusercontent.com/u/16646517?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tomasz Łakomy</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=tlakomy\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/john-tipper\"><img src=\"https://avatars2.githubusercontent.com/u/9730398?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>john-tipper</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=john-tipper\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/henrysachs\"><img src=\"https://avatars0.githubusercontent.com/u/17173951?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Henry Sachs</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=henrysachs\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/eganjs\"><img src=\"https://avatars3.githubusercontent.com/u/6639482?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Joseph Egan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eganjs\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://skorfmann.com/\"><img src=\"https://avatars1.githubusercontent.com/u/136789?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Sebastian Korfmann</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=skorfmann\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://www.callant.net/\"><img src=\"https://avatars1.githubusercontent.com/u/5915843?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Bart Callant</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bartcallant\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/campionfellin\"><img src=\"https://avatars3.githubusercontent.com/u/11984923?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Campion Fellin</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=campionfellin\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/gradybarrett\"><img src=\"https://avatars1.githubusercontent.com/u/1140074?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Grady Barrett</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=gradybarrett\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/HassanMahmud\"><img src=\"https://avatars3.githubusercontent.com/u/58504381?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Mahmud</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=HassanMahmud\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dk.linkedin.com/in/hassanmahmud93\"><img src=\"https://avatars1.githubusercontent.com/u/7426703?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Mahmud</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hass123uk\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://joapy.com/\"><img src=\"https://avatars3.githubusercontent.com/u/325306?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jake Pearson</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jakepearson\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/JeremyJonas\"><img src=\"https://avatars1.githubusercontent.com/u/464119?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jeremy Jonas</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=JeremyJonas\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dev.to/martzcodes\"><img src=\"https://avatars1.githubusercontent.com/u/978362?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matt Martz</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=martzcodes\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/fongie\"><img src=\"https://avatars1.githubusercontent.com/u/19932622?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Max Körlinge</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=fongie\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://blog.neilkuan.dev/\"><img src=\"https://avatars2.githubusercontent.com/u/46012524?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Neil Kuan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=guan840912\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://dynobase.dev/\"><img src=\"https://avatars3.githubusercontent.com/u/3391616?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Rafal Wilinski</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=RafalWilinski\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://keybase.io/romainmuller\"><img src=\"https://avatars2.githubusercontent.com/u/411689?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Romain Marcadier</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=RomainMuller\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/thomasklinger1234\"><img src=\"https://avatars1.githubusercontent.com/u/39558817?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Thomas Klinger</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=thomasklinger1234\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/gwriss\"><img src=\"https://avatars2.githubusercontent.com/u/1842089?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tobias</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=gwriss\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/flyingImer\"><img src=\"https://avatars0.githubusercontent.com/u/1973868?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>flyingImer</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=flyingImer\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/Hunter-Thompson\"><img src=\"https://avatars.githubusercontent.com/u/20844961?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b> Aatman </b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Hunter-Thompson\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mmcculloh-dms\"><img src=\"https://avatars.githubusercontent.com/u/68597641?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mark McCulloh</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mmcculloh-dms\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/aisamu\"><img src=\"https://avatars.githubusercontent.com/u/431708?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Samuel Tschiedel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=aisamu\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/iliapolo\"><img src=\"https://avatars.githubusercontent.com/u/1428812?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eli Polonsky</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=iliapolo\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://unsubstantiated.blog/\"><img src=\"https://avatars.githubusercontent.com/u/1308885?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Alexander Steppke</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Miradorn\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/kanatti\"><img src=\"https://avatars.githubusercontent.com/u/8623654?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Balagopal Kanattil</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=kanatti\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"http://twitter.com/bracki\"><img src=\"https://avatars.githubusercontent.com/u/49786?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Jan Brauer</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=bracki\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://polothy.github.io/\"><img src=\"https://avatars.githubusercontent.com/u/634657?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mark Nielsen</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=polothy\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/MrArnoldPalmer\"><img src=\"https://avatars.githubusercontent.com/u/7221111?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Mitchell Valine</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=MrArnoldPalmer\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://blog.neilkuan.net/\"><img src=\"https://avatars.githubusercontent.com/u/46012524?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Neil Kuan</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=neilkuan\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://garbe.io/\"><img src=\"https://avatars.githubusercontent.com/u/721899?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Philipp Garbe</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=pgarbe\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://selfstructured.com/\"><img src=\"https://avatars.githubusercontent.com/u/361689?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Shawn MacIntyre</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=smacintyre\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/tobias-bardino\"><img src=\"https://avatars.githubusercontent.com/u/1842089?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Tobias</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=tobias-bardino\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/yglcode\"><img src=\"https://avatars.githubusercontent.com/u/11893614?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Yigong Liu</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=yglcode\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/eduardomourar\"><img src=\"https://avatars.githubusercontent.com/u/16357187?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Eduardo Rodrigues</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=eduardomourar\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hassanazharkhan\"><img src=\"https://avatars.githubusercontent.com/u/57677979?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Hassan Azhar</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hassanazharkhan\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://www.linkedin.com/in/julian-michel-812a223a/\"><img src=\"https://avatars.githubusercontent.com/u/15660169?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Julian Michel</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=jumic\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/lmarsden\"><img src=\"https://avatars.githubusercontent.com/u/51232932?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>lmarsden</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=lmarsden\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/adrianmace\"><img src=\"https://avatars.githubusercontent.com/u/5071859?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Adrian Mace</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=adrianmace\" title=\"Code\">💻</a></td>\n </tr>\n <tr>\n <td align=\"center\"><a href=\"https://github.com/mKeRix\"><img src=\"https://avatars.githubusercontent.com/u/770596?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Heiko Rothe</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mKeRix\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/hyandell\"><img src=\"https://avatars.githubusercontent.com/u/477715?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Henri Yandell</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=hyandell\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/mwg-rea\"><img src=\"https://avatars.githubusercontent.com/u/82480228?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matthew Gamble</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=mwg-rea\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://willdady.com/\"><img src=\"https://avatars.githubusercontent.com/u/204259?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Will Dady</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=willdady\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/msessa\"><img src=\"https://avatars.githubusercontent.com/u/1912143?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Matteo Sessa</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=msessa\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/Hi-Fi\"><img src=\"https://avatars.githubusercontent.com/u/1499780?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Juho Saarinen</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=Hi-Fi\" title=\"Code\">💻</a></td>\n <td align=\"center\"><a href=\"https://github.com/njlynch\"><img src=\"https://avatars.githubusercontent.com/u/1376292?v=4?s=100\" width=\"100px;\" alt=\"\"/><br /><sub><b>Nick Lynch</b></sub></a><br /><a href=\"https://github.com/projen/projen/commits?author=njlynch\" title=\"Code\">💻</a></td>\n </tr>\n</table>\n\n<!-- markdownlint-restore -->\n<!-- prettier-ignore-end -->\n\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\n## License\n\nDistributed under the [Apache-2.0](./LICENSE) license.\n\n"
|
|
51
52
|
},
|
|
52
53
|
"repository": {
|
|
53
54
|
"type": "git",
|
|
@@ -62,6 +63,13 @@
|
|
|
62
63
|
},
|
|
63
64
|
"symbolId": "src/awscdk/index:"
|
|
64
65
|
},
|
|
66
|
+
"projen.build": {
|
|
67
|
+
"locationInModule": {
|
|
68
|
+
"filename": "src/index.ts",
|
|
69
|
+
"line": 48
|
|
70
|
+
},
|
|
71
|
+
"symbolId": "src/build/index:"
|
|
72
|
+
},
|
|
65
73
|
"projen.cdk": {
|
|
66
74
|
"locationInModule": {
|
|
67
75
|
"filename": "src/index.ts",
|
|
@@ -536,7 +544,7 @@
|
|
|
536
544
|
},
|
|
537
545
|
"locationInModule": {
|
|
538
546
|
"filename": "src/dependencies.ts",
|
|
539
|
-
"line":
|
|
547
|
+
"line": 153
|
|
540
548
|
},
|
|
541
549
|
"name": "removeDependency",
|
|
542
550
|
"parameters": [
|
|
@@ -661,7 +669,7 @@
|
|
|
661
669
|
"kind": "interface",
|
|
662
670
|
"locationInModule": {
|
|
663
671
|
"filename": "src/dependencies.ts",
|
|
664
|
-
"line":
|
|
672
|
+
"line": 241
|
|
665
673
|
},
|
|
666
674
|
"name": "Dependency",
|
|
667
675
|
"properties": [
|
|
@@ -674,7 +682,7 @@
|
|
|
674
682
|
"immutable": true,
|
|
675
683
|
"locationInModule": {
|
|
676
684
|
"filename": "src/dependencies.ts",
|
|
677
|
-
"line":
|
|
685
|
+
"line": 246
|
|
678
686
|
},
|
|
679
687
|
"name": "type",
|
|
680
688
|
"type": {
|
|
@@ -691,7 +699,7 @@
|
|
|
691
699
|
"immutable": true,
|
|
692
700
|
"locationInModule": {
|
|
693
701
|
"filename": "src/dependencies.ts",
|
|
694
|
-
"line":
|
|
702
|
+
"line": 253
|
|
695
703
|
},
|
|
696
704
|
"name": "metadata",
|
|
697
705
|
"optional": true,
|
|
@@ -718,7 +726,7 @@
|
|
|
718
726
|
"kind": "interface",
|
|
719
727
|
"locationInModule": {
|
|
720
728
|
"filename": "src/dependencies.ts",
|
|
721
|
-
"line":
|
|
729
|
+
"line": 221
|
|
722
730
|
},
|
|
723
731
|
"name": "DependencyCoordinates",
|
|
724
732
|
"properties": [
|
|
@@ -732,7 +740,7 @@
|
|
|
732
740
|
"immutable": true,
|
|
733
741
|
"locationInModule": {
|
|
734
742
|
"filename": "src/dependencies.ts",
|
|
735
|
-
"line":
|
|
743
|
+
"line": 228
|
|
736
744
|
},
|
|
737
745
|
"name": "name",
|
|
738
746
|
"type": {
|
|
@@ -749,7 +757,7 @@
|
|
|
749
757
|
"immutable": true,
|
|
750
758
|
"locationInModule": {
|
|
751
759
|
"filename": "src/dependencies.ts",
|
|
752
|
-
"line":
|
|
760
|
+
"line": 235
|
|
753
761
|
},
|
|
754
762
|
"name": "version",
|
|
755
763
|
"optional": true,
|
|
@@ -770,7 +778,7 @@
|
|
|
770
778
|
"kind": "enum",
|
|
771
779
|
"locationInModule": {
|
|
772
780
|
"filename": "src/dependencies.ts",
|
|
773
|
-
"line":
|
|
781
|
+
"line": 259
|
|
774
782
|
},
|
|
775
783
|
"members": [
|
|
776
784
|
{
|
|
@@ -829,7 +837,7 @@
|
|
|
829
837
|
"kind": "interface",
|
|
830
838
|
"locationInModule": {
|
|
831
839
|
"filename": "src/dependencies.ts",
|
|
832
|
-
"line":
|
|
840
|
+
"line": 211
|
|
833
841
|
},
|
|
834
842
|
"name": "DepsManifest",
|
|
835
843
|
"properties": [
|
|
@@ -842,7 +850,7 @@
|
|
|
842
850
|
"immutable": true,
|
|
843
851
|
"locationInModule": {
|
|
844
852
|
"filename": "src/dependencies.ts",
|
|
845
|
-
"line":
|
|
853
|
+
"line": 215
|
|
846
854
|
},
|
|
847
855
|
"name": "dependencies",
|
|
848
856
|
"type": {
|
|
@@ -11212,6 +11220,316 @@
|
|
|
11212
11220
|
],
|
|
11213
11221
|
"symbolId": "src/awscdk/lambda-function:LambdaRuntime"
|
|
11214
11222
|
},
|
|
11223
|
+
"projen.build.BuildWorkflow": {
|
|
11224
|
+
"assembly": "projen",
|
|
11225
|
+
"base": "projen.Component",
|
|
11226
|
+
"docs": {
|
|
11227
|
+
"stability": "experimental"
|
|
11228
|
+
},
|
|
11229
|
+
"fqn": "projen.build.BuildWorkflow",
|
|
11230
|
+
"initializer": {
|
|
11231
|
+
"docs": {
|
|
11232
|
+
"stability": "experimental"
|
|
11233
|
+
},
|
|
11234
|
+
"locationInModule": {
|
|
11235
|
+
"filename": "src/build/build-workflow.ts",
|
|
11236
|
+
"line": 89
|
|
11237
|
+
},
|
|
11238
|
+
"parameters": [
|
|
11239
|
+
{
|
|
11240
|
+
"name": "project",
|
|
11241
|
+
"type": {
|
|
11242
|
+
"fqn": "projen.Project"
|
|
11243
|
+
}
|
|
11244
|
+
},
|
|
11245
|
+
{
|
|
11246
|
+
"name": "options",
|
|
11247
|
+
"type": {
|
|
11248
|
+
"fqn": "projen.build.BuildWorkflowOptions"
|
|
11249
|
+
}
|
|
11250
|
+
}
|
|
11251
|
+
]
|
|
11252
|
+
},
|
|
11253
|
+
"kind": "class",
|
|
11254
|
+
"locationInModule": {
|
|
11255
|
+
"filename": "src/build/build-workflow.ts",
|
|
11256
|
+
"line": 74
|
|
11257
|
+
},
|
|
11258
|
+
"methods": [
|
|
11259
|
+
{
|
|
11260
|
+
"docs": {
|
|
11261
|
+
"stability": "experimental",
|
|
11262
|
+
"summary": "Adds another job to the build workflow which is executed after the build job succeeded."
|
|
11263
|
+
},
|
|
11264
|
+
"locationInModule": {
|
|
11265
|
+
"filename": "src/build/build-workflow.ts",
|
|
11266
|
+
"line": 212
|
|
11267
|
+
},
|
|
11268
|
+
"name": "addPostBuildJob",
|
|
11269
|
+
"parameters": [
|
|
11270
|
+
{
|
|
11271
|
+
"docs": {
|
|
11272
|
+
"summary": "The id of the new job."
|
|
11273
|
+
},
|
|
11274
|
+
"name": "id",
|
|
11275
|
+
"type": {
|
|
11276
|
+
"primitive": "string"
|
|
11277
|
+
}
|
|
11278
|
+
},
|
|
11279
|
+
{
|
|
11280
|
+
"docs": {
|
|
11281
|
+
"summary": "The job specification."
|
|
11282
|
+
},
|
|
11283
|
+
"name": "job",
|
|
11284
|
+
"type": {
|
|
11285
|
+
"fqn": "projen.github.workflows.Job"
|
|
11286
|
+
}
|
|
11287
|
+
}
|
|
11288
|
+
]
|
|
11289
|
+
},
|
|
11290
|
+
{
|
|
11291
|
+
"docs": {
|
|
11292
|
+
"stability": "experimental",
|
|
11293
|
+
"summary": "Adds steps that are executed after the build."
|
|
11294
|
+
},
|
|
11295
|
+
"locationInModule": {
|
|
11296
|
+
"filename": "src/build/build-workflow.ts",
|
|
11297
|
+
"line": 203
|
|
11298
|
+
},
|
|
11299
|
+
"name": "addPostBuildSteps",
|
|
11300
|
+
"parameters": [
|
|
11301
|
+
{
|
|
11302
|
+
"docs": {
|
|
11303
|
+
"summary": "The job steps."
|
|
11304
|
+
},
|
|
11305
|
+
"name": "steps",
|
|
11306
|
+
"type": {
|
|
11307
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
11308
|
+
},
|
|
11309
|
+
"variadic": true
|
|
11310
|
+
}
|
|
11311
|
+
],
|
|
11312
|
+
"variadic": true
|
|
11313
|
+
}
|
|
11314
|
+
],
|
|
11315
|
+
"name": "BuildWorkflow",
|
|
11316
|
+
"namespace": "build",
|
|
11317
|
+
"properties": [
|
|
11318
|
+
{
|
|
11319
|
+
"docs": {
|
|
11320
|
+
"stability": "experimental",
|
|
11321
|
+
"summary": "Returns a list of job IDs that are part of the build."
|
|
11322
|
+
},
|
|
11323
|
+
"immutable": true,
|
|
11324
|
+
"locationInModule": {
|
|
11325
|
+
"filename": "src/build/build-workflow.ts",
|
|
11326
|
+
"line": 195
|
|
11327
|
+
},
|
|
11328
|
+
"name": "buildJobIds",
|
|
11329
|
+
"type": {
|
|
11330
|
+
"collection": {
|
|
11331
|
+
"elementtype": {
|
|
11332
|
+
"primitive": "string"
|
|
11333
|
+
},
|
|
11334
|
+
"kind": "array"
|
|
11335
|
+
}
|
|
11336
|
+
}
|
|
11337
|
+
}
|
|
11338
|
+
],
|
|
11339
|
+
"symbolId": "src/build/build-workflow:BuildWorkflow"
|
|
11340
|
+
},
|
|
11341
|
+
"projen.build.BuildWorkflowOptions": {
|
|
11342
|
+
"assembly": "projen",
|
|
11343
|
+
"datatype": true,
|
|
11344
|
+
"docs": {
|
|
11345
|
+
"stability": "experimental"
|
|
11346
|
+
},
|
|
11347
|
+
"fqn": "projen.build.BuildWorkflowOptions",
|
|
11348
|
+
"kind": "interface",
|
|
11349
|
+
"locationInModule": {
|
|
11350
|
+
"filename": "src/build/build-workflow.ts",
|
|
11351
|
+
"line": 14
|
|
11352
|
+
},
|
|
11353
|
+
"name": "BuildWorkflowOptions",
|
|
11354
|
+
"namespace": "build",
|
|
11355
|
+
"properties": [
|
|
11356
|
+
{
|
|
11357
|
+
"abstract": true,
|
|
11358
|
+
"docs": {
|
|
11359
|
+
"stability": "experimental",
|
|
11360
|
+
"summary": "A name of a directory that includes build artifacts."
|
|
11361
|
+
},
|
|
11362
|
+
"immutable": true,
|
|
11363
|
+
"locationInModule": {
|
|
11364
|
+
"filename": "src/build/build-workflow.ts",
|
|
11365
|
+
"line": 23
|
|
11366
|
+
},
|
|
11367
|
+
"name": "artifactsDirectory",
|
|
11368
|
+
"type": {
|
|
11369
|
+
"primitive": "string"
|
|
11370
|
+
}
|
|
11371
|
+
},
|
|
11372
|
+
{
|
|
11373
|
+
"abstract": true,
|
|
11374
|
+
"docs": {
|
|
11375
|
+
"stability": "experimental",
|
|
11376
|
+
"summary": "The task to execute in order to build the project."
|
|
11377
|
+
},
|
|
11378
|
+
"immutable": true,
|
|
11379
|
+
"locationInModule": {
|
|
11380
|
+
"filename": "src/build/build-workflow.ts",
|
|
11381
|
+
"line": 18
|
|
11382
|
+
},
|
|
11383
|
+
"name": "buildTask",
|
|
11384
|
+
"type": {
|
|
11385
|
+
"fqn": "projen.Task"
|
|
11386
|
+
}
|
|
11387
|
+
},
|
|
11388
|
+
{
|
|
11389
|
+
"abstract": true,
|
|
11390
|
+
"docs": {
|
|
11391
|
+
"default": "true",
|
|
11392
|
+
"stability": "experimental",
|
|
11393
|
+
"summary": "Enable anti-tamper check."
|
|
11394
|
+
},
|
|
11395
|
+
"immutable": true,
|
|
11396
|
+
"locationInModule": {
|
|
11397
|
+
"filename": "src/build/build-workflow.ts",
|
|
11398
|
+
"line": 71
|
|
11399
|
+
},
|
|
11400
|
+
"name": "antitamper",
|
|
11401
|
+
"optional": true,
|
|
11402
|
+
"type": {
|
|
11403
|
+
"primitive": "boolean"
|
|
11404
|
+
}
|
|
11405
|
+
},
|
|
11406
|
+
{
|
|
11407
|
+
"abstract": true,
|
|
11408
|
+
"docs": {
|
|
11409
|
+
"default": "- the default workflow container",
|
|
11410
|
+
"stability": "experimental",
|
|
11411
|
+
"summary": "The container image to use for builds."
|
|
11412
|
+
},
|
|
11413
|
+
"immutable": true,
|
|
11414
|
+
"locationInModule": {
|
|
11415
|
+
"filename": "src/build/build-workflow.ts",
|
|
11416
|
+
"line": 29
|
|
11417
|
+
},
|
|
11418
|
+
"name": "containerImage",
|
|
11419
|
+
"optional": true,
|
|
11420
|
+
"type": {
|
|
11421
|
+
"primitive": "string"
|
|
11422
|
+
}
|
|
11423
|
+
},
|
|
11424
|
+
{
|
|
11425
|
+
"abstract": true,
|
|
11426
|
+
"docs": {
|
|
11427
|
+
"default": "{}",
|
|
11428
|
+
"stability": "experimental",
|
|
11429
|
+
"summary": "Build environment variables."
|
|
11430
|
+
},
|
|
11431
|
+
"immutable": true,
|
|
11432
|
+
"locationInModule": {
|
|
11433
|
+
"filename": "src/build/build-workflow.ts",
|
|
11434
|
+
"line": 64
|
|
11435
|
+
},
|
|
11436
|
+
"name": "env",
|
|
11437
|
+
"optional": true,
|
|
11438
|
+
"type": {
|
|
11439
|
+
"collection": {
|
|
11440
|
+
"elementtype": {
|
|
11441
|
+
"primitive": "string"
|
|
11442
|
+
},
|
|
11443
|
+
"kind": "map"
|
|
11444
|
+
}
|
|
11445
|
+
}
|
|
11446
|
+
},
|
|
11447
|
+
{
|
|
11448
|
+
"abstract": true,
|
|
11449
|
+
"docs": {
|
|
11450
|
+
"default": "- default identity",
|
|
11451
|
+
"stability": "experimental",
|
|
11452
|
+
"summary": "Git identity to use for the workflow."
|
|
11453
|
+
},
|
|
11454
|
+
"immutable": true,
|
|
11455
|
+
"locationInModule": {
|
|
11456
|
+
"filename": "src/build/build-workflow.ts",
|
|
11457
|
+
"line": 58
|
|
11458
|
+
},
|
|
11459
|
+
"name": "gitIdentity",
|
|
11460
|
+
"optional": true,
|
|
11461
|
+
"type": {
|
|
11462
|
+
"fqn": "projen.github.GitIdentity"
|
|
11463
|
+
}
|
|
11464
|
+
},
|
|
11465
|
+
{
|
|
11466
|
+
"abstract": true,
|
|
11467
|
+
"docs": {
|
|
11468
|
+
"default": "true",
|
|
11469
|
+
"remarks": "This means\nthat any files synthesized by projen or e.g. test snapshots will always be up-to-date\nbefore a PR is merged.\n\nImplies that PR builds do not have anti-tamper checks.",
|
|
11470
|
+
"stability": "experimental",
|
|
11471
|
+
"summary": "Automatically update files modified during builds to pull-request branches."
|
|
11472
|
+
},
|
|
11473
|
+
"immutable": true,
|
|
11474
|
+
"locationInModule": {
|
|
11475
|
+
"filename": "src/build/build-workflow.ts",
|
|
11476
|
+
"line": 40
|
|
11477
|
+
},
|
|
11478
|
+
"name": "mutableBuild",
|
|
11479
|
+
"optional": true,
|
|
11480
|
+
"type": {
|
|
11481
|
+
"primitive": "boolean"
|
|
11482
|
+
}
|
|
11483
|
+
},
|
|
11484
|
+
{
|
|
11485
|
+
"abstract": true,
|
|
11486
|
+
"docs": {
|
|
11487
|
+
"default": "[]",
|
|
11488
|
+
"stability": "experimental",
|
|
11489
|
+
"summary": "Steps to execute after build."
|
|
11490
|
+
},
|
|
11491
|
+
"immutable": true,
|
|
11492
|
+
"locationInModule": {
|
|
11493
|
+
"filename": "src/build/build-workflow.ts",
|
|
11494
|
+
"line": 52
|
|
11495
|
+
},
|
|
11496
|
+
"name": "postBuildSteps",
|
|
11497
|
+
"optional": true,
|
|
11498
|
+
"type": {
|
|
11499
|
+
"collection": {
|
|
11500
|
+
"elementtype": {
|
|
11501
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
11502
|
+
},
|
|
11503
|
+
"kind": "array"
|
|
11504
|
+
}
|
|
11505
|
+
}
|
|
11506
|
+
},
|
|
11507
|
+
{
|
|
11508
|
+
"abstract": true,
|
|
11509
|
+
"docs": {
|
|
11510
|
+
"default": "[]",
|
|
11511
|
+
"stability": "experimental",
|
|
11512
|
+
"summary": "Steps to execute before the build."
|
|
11513
|
+
},
|
|
11514
|
+
"immutable": true,
|
|
11515
|
+
"locationInModule": {
|
|
11516
|
+
"filename": "src/build/build-workflow.ts",
|
|
11517
|
+
"line": 46
|
|
11518
|
+
},
|
|
11519
|
+
"name": "preBuildSteps",
|
|
11520
|
+
"optional": true,
|
|
11521
|
+
"type": {
|
|
11522
|
+
"collection": {
|
|
11523
|
+
"elementtype": {
|
|
11524
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
11525
|
+
},
|
|
11526
|
+
"kind": "array"
|
|
11527
|
+
}
|
|
11528
|
+
}
|
|
11529
|
+
}
|
|
11530
|
+
],
|
|
11531
|
+
"symbolId": "src/build/build-workflow:BuildWorkflowOptions"
|
|
11532
|
+
},
|
|
11215
11533
|
"projen.cdk.Catalog": {
|
|
11216
11534
|
"assembly": "projen",
|
|
11217
11535
|
"datatype": true,
|
|
@@ -11387,7 +11705,7 @@
|
|
|
11387
11705
|
"kind": "interface",
|
|
11388
11706
|
"locationInModule": {
|
|
11389
11707
|
"filename": "src/cdk/jsii-project.ts",
|
|
11390
|
-
"line":
|
|
11708
|
+
"line": 113
|
|
11391
11709
|
},
|
|
11392
11710
|
"name": "JsiiDotNetTarget",
|
|
11393
11711
|
"namespace": "cdk",
|
|
@@ -11400,7 +11718,7 @@
|
|
|
11400
11718
|
"immutable": true,
|
|
11401
11719
|
"locationInModule": {
|
|
11402
11720
|
"filename": "src/cdk/jsii-project.ts",
|
|
11403
|
-
"line":
|
|
11721
|
+
"line": 114
|
|
11404
11722
|
},
|
|
11405
11723
|
"name": "dotNetNamespace",
|
|
11406
11724
|
"type": {
|
|
@@ -11415,7 +11733,7 @@
|
|
|
11415
11733
|
"immutable": true,
|
|
11416
11734
|
"locationInModule": {
|
|
11417
11735
|
"filename": "src/cdk/jsii-project.ts",
|
|
11418
|
-
"line":
|
|
11736
|
+
"line": 115
|
|
11419
11737
|
},
|
|
11420
11738
|
"name": "packageId",
|
|
11421
11739
|
"type": {
|
|
@@ -11439,7 +11757,7 @@
|
|
|
11439
11757
|
"kind": "interface",
|
|
11440
11758
|
"locationInModule": {
|
|
11441
11759
|
"filename": "src/cdk/jsii-project.ts",
|
|
11442
|
-
"line":
|
|
11760
|
+
"line": 121
|
|
11443
11761
|
},
|
|
11444
11762
|
"name": "JsiiGoTarget",
|
|
11445
11763
|
"namespace": "cdk",
|
|
@@ -11454,7 +11772,7 @@
|
|
|
11454
11772
|
"immutable": true,
|
|
11455
11773
|
"locationInModule": {
|
|
11456
11774
|
"filename": "src/cdk/jsii-project.ts",
|
|
11457
|
-
"line":
|
|
11775
|
+
"line": 128
|
|
11458
11776
|
},
|
|
11459
11777
|
"name": "moduleName",
|
|
11460
11778
|
"type": {
|
|
@@ -11477,7 +11795,7 @@
|
|
|
11477
11795
|
"kind": "interface",
|
|
11478
11796
|
"locationInModule": {
|
|
11479
11797
|
"filename": "src/cdk/jsii-project.ts",
|
|
11480
|
-
"line":
|
|
11798
|
+
"line": 102
|
|
11481
11799
|
},
|
|
11482
11800
|
"name": "JsiiJavaTarget",
|
|
11483
11801
|
"namespace": "cdk",
|
|
@@ -11490,7 +11808,7 @@
|
|
|
11490
11808
|
"immutable": true,
|
|
11491
11809
|
"locationInModule": {
|
|
11492
11810
|
"filename": "src/cdk/jsii-project.ts",
|
|
11493
|
-
"line":
|
|
11811
|
+
"line": 103
|
|
11494
11812
|
},
|
|
11495
11813
|
"name": "javaPackage",
|
|
11496
11814
|
"type": {
|
|
@@ -11505,7 +11823,7 @@
|
|
|
11505
11823
|
"immutable": true,
|
|
11506
11824
|
"locationInModule": {
|
|
11507
11825
|
"filename": "src/cdk/jsii-project.ts",
|
|
11508
|
-
"line":
|
|
11826
|
+
"line": 105
|
|
11509
11827
|
},
|
|
11510
11828
|
"name": "mavenArtifactId",
|
|
11511
11829
|
"type": {
|
|
@@ -11520,7 +11838,7 @@
|
|
|
11520
11838
|
"immutable": true,
|
|
11521
11839
|
"locationInModule": {
|
|
11522
11840
|
"filename": "src/cdk/jsii-project.ts",
|
|
11523
|
-
"line":
|
|
11841
|
+
"line": 104
|
|
11524
11842
|
},
|
|
11525
11843
|
"name": "mavenGroupId",
|
|
11526
11844
|
"type": {
|
|
@@ -11561,7 +11879,7 @@
|
|
|
11561
11879
|
"kind": "class",
|
|
11562
11880
|
"locationInModule": {
|
|
11563
11881
|
"filename": "src/cdk/jsii-project.ts",
|
|
11564
|
-
"line":
|
|
11882
|
+
"line": 137
|
|
11565
11883
|
},
|
|
11566
11884
|
"name": "JsiiProject",
|
|
11567
11885
|
"namespace": "cdk",
|
|
@@ -11573,7 +11891,7 @@
|
|
|
11573
11891
|
"immutable": true,
|
|
11574
11892
|
"locationInModule": {
|
|
11575
11893
|
"filename": "src/cdk/jsii-project.ts",
|
|
11576
|
-
"line":
|
|
11894
|
+
"line": 138
|
|
11577
11895
|
},
|
|
11578
11896
|
"name": "eslint",
|
|
11579
11897
|
"optional": true,
|
|
@@ -11598,7 +11916,7 @@
|
|
|
11598
11916
|
"kind": "interface",
|
|
11599
11917
|
"locationInModule": {
|
|
11600
11918
|
"filename": "src/cdk/jsii-project.ts",
|
|
11601
|
-
"line":
|
|
11919
|
+
"line": 11
|
|
11602
11920
|
},
|
|
11603
11921
|
"name": "JsiiProjectOptions",
|
|
11604
11922
|
"namespace": "cdk",
|
|
@@ -11613,7 +11931,7 @@
|
|
|
11613
11931
|
"immutable": true,
|
|
11614
11932
|
"locationInModule": {
|
|
11615
11933
|
"filename": "src/cdk/jsii-project.ts",
|
|
11616
|
-
"line":
|
|
11934
|
+
"line": 27
|
|
11617
11935
|
},
|
|
11618
11936
|
"name": "author",
|
|
11619
11937
|
"type": {
|
|
@@ -11630,7 +11948,7 @@
|
|
|
11630
11948
|
"immutable": true,
|
|
11631
11949
|
"locationInModule": {
|
|
11632
11950
|
"filename": "src/cdk/jsii-project.ts",
|
|
11633
|
-
"line":
|
|
11951
|
+
"line": 33
|
|
11634
11952
|
},
|
|
11635
11953
|
"name": "authorAddress",
|
|
11636
11954
|
"type": {
|
|
@@ -11647,7 +11965,7 @@
|
|
|
11647
11965
|
"immutable": true,
|
|
11648
11966
|
"locationInModule": {
|
|
11649
11967
|
"filename": "src/cdk/jsii-project.ts",
|
|
11650
|
-
"line":
|
|
11968
|
+
"line": 21
|
|
11651
11969
|
},
|
|
11652
11970
|
"name": "repositoryUrl",
|
|
11653
11971
|
"type": {
|
|
@@ -11665,7 +11983,7 @@
|
|
|
11665
11983
|
"immutable": true,
|
|
11666
11984
|
"locationInModule": {
|
|
11667
11985
|
"filename": "src/cdk/jsii-project.ts",
|
|
11668
|
-
"line":
|
|
11986
|
+
"line": 77
|
|
11669
11987
|
},
|
|
11670
11988
|
"name": "compat",
|
|
11671
11989
|
"optional": true,
|
|
@@ -11683,7 +12001,7 @@
|
|
|
11683
12001
|
"immutable": true,
|
|
11684
12002
|
"locationInModule": {
|
|
11685
12003
|
"filename": "src/cdk/jsii-project.ts",
|
|
11686
|
-
"line":
|
|
12004
|
+
"line": 84
|
|
11687
12005
|
},
|
|
11688
12006
|
"name": "compatIgnore",
|
|
11689
12007
|
"optional": true,
|
|
@@ -11700,7 +12018,7 @@
|
|
|
11700
12018
|
"immutable": true,
|
|
11701
12019
|
"locationInModule": {
|
|
11702
12020
|
"filename": "src/cdk/jsii-project.ts",
|
|
11703
|
-
"line":
|
|
12021
|
+
"line": 67
|
|
11704
12022
|
},
|
|
11705
12023
|
"name": "dotnet",
|
|
11706
12024
|
"optional": true,
|
|
@@ -11718,7 +12036,7 @@
|
|
|
11718
12036
|
"immutable": true,
|
|
11719
12037
|
"locationInModule": {
|
|
11720
12038
|
"filename": "src/cdk/jsii-project.ts",
|
|
11721
|
-
"line":
|
|
12039
|
+
"line": 93
|
|
11722
12040
|
},
|
|
11723
12041
|
"name": "excludeTypescript",
|
|
11724
12042
|
"optional": true,
|
|
@@ -11741,7 +12059,7 @@
|
|
|
11741
12059
|
"immutable": true,
|
|
11742
12060
|
"locationInModule": {
|
|
11743
12061
|
"filename": "src/cdk/jsii-project.ts",
|
|
11744
|
-
"line":
|
|
12062
|
+
"line": 51
|
|
11745
12063
|
},
|
|
11746
12064
|
"name": "publishToGo",
|
|
11747
12065
|
"optional": true,
|
|
@@ -11759,7 +12077,7 @@
|
|
|
11759
12077
|
"immutable": true,
|
|
11760
12078
|
"locationInModule": {
|
|
11761
12079
|
"filename": "src/cdk/jsii-project.ts",
|
|
11762
|
-
"line":
|
|
12080
|
+
"line": 39
|
|
11763
12081
|
},
|
|
11764
12082
|
"name": "publishToMaven",
|
|
11765
12083
|
"optional": true,
|
|
@@ -11777,7 +12095,7 @@
|
|
|
11777
12095
|
"immutable": true,
|
|
11778
12096
|
"locationInModule": {
|
|
11779
12097
|
"filename": "src/cdk/jsii-project.ts",
|
|
11780
|
-
"line":
|
|
12098
|
+
"line": 62
|
|
11781
12099
|
},
|
|
11782
12100
|
"name": "publishToNuget",
|
|
11783
12101
|
"optional": true,
|
|
@@ -11795,7 +12113,7 @@
|
|
|
11795
12113
|
"immutable": true,
|
|
11796
12114
|
"locationInModule": {
|
|
11797
12115
|
"filename": "src/cdk/jsii-project.ts",
|
|
11798
|
-
"line":
|
|
12116
|
+
"line": 45
|
|
11799
12117
|
},
|
|
11800
12118
|
"name": "publishToPypi",
|
|
11801
12119
|
"optional": true,
|
|
@@ -11812,7 +12130,7 @@
|
|
|
11812
12130
|
"immutable": true,
|
|
11813
12131
|
"locationInModule": {
|
|
11814
12132
|
"filename": "src/cdk/jsii-project.ts",
|
|
11815
|
-
"line":
|
|
12133
|
+
"line": 56
|
|
11816
12134
|
},
|
|
11817
12135
|
"name": "python",
|
|
11818
12136
|
"optional": true,
|
|
@@ -11829,7 +12147,7 @@
|
|
|
11829
12147
|
"immutable": true,
|
|
11830
12148
|
"locationInModule": {
|
|
11831
12149
|
"filename": "src/cdk/jsii-project.ts",
|
|
11832
|
-
"line":
|
|
12150
|
+
"line": 15
|
|
11833
12151
|
},
|
|
11834
12152
|
"name": "rootdir",
|
|
11835
12153
|
"optional": true,
|
|
@@ -11853,7 +12171,7 @@
|
|
|
11853
12171
|
"kind": "interface",
|
|
11854
12172
|
"locationInModule": {
|
|
11855
12173
|
"filename": "src/cdk/jsii-project.ts",
|
|
11856
|
-
"line":
|
|
12174
|
+
"line": 108
|
|
11857
12175
|
},
|
|
11858
12176
|
"name": "JsiiPythonTarget",
|
|
11859
12177
|
"namespace": "cdk",
|
|
@@ -11866,7 +12184,7 @@
|
|
|
11866
12184
|
"immutable": true,
|
|
11867
12185
|
"locationInModule": {
|
|
11868
12186
|
"filename": "src/cdk/jsii-project.ts",
|
|
11869
|
-
"line":
|
|
12187
|
+
"line": 109
|
|
11870
12188
|
},
|
|
11871
12189
|
"name": "distName",
|
|
11872
12190
|
"type": {
|
|
@@ -11881,7 +12199,7 @@
|
|
|
11881
12199
|
"immutable": true,
|
|
11882
12200
|
"locationInModule": {
|
|
11883
12201
|
"filename": "src/cdk/jsii-project.ts",
|
|
11884
|
-
"line":
|
|
12202
|
+
"line": 110
|
|
11885
12203
|
},
|
|
11886
12204
|
"name": "module",
|
|
11887
12205
|
"type": {
|
|
@@ -11900,7 +12218,7 @@
|
|
|
11900
12218
|
"kind": "enum",
|
|
11901
12219
|
"locationInModule": {
|
|
11902
12220
|
"filename": "src/cdk/jsii-project.ts",
|
|
11903
|
-
"line":
|
|
12221
|
+
"line": 96
|
|
11904
12222
|
},
|
|
11905
12223
|
"members": [
|
|
11906
12224
|
{
|
|
@@ -13363,7 +13681,7 @@
|
|
|
13363
13681
|
},
|
|
13364
13682
|
"locationInModule": {
|
|
13365
13683
|
"filename": "src/github/github.ts",
|
|
13366
|
-
"line":
|
|
13684
|
+
"line": 68
|
|
13367
13685
|
},
|
|
13368
13686
|
"parameters": [
|
|
13369
13687
|
{
|
|
@@ -13387,13 +13705,39 @@
|
|
|
13387
13705
|
"line": 47
|
|
13388
13706
|
},
|
|
13389
13707
|
"methods": [
|
|
13708
|
+
{
|
|
13709
|
+
"docs": {
|
|
13710
|
+
"stability": "experimental",
|
|
13711
|
+
"summary": "Returns the `GitHub` component of a project or `undefined` if the project does not have a GitHub component."
|
|
13712
|
+
},
|
|
13713
|
+
"locationInModule": {
|
|
13714
|
+
"filename": "src/github/github.ts",
|
|
13715
|
+
"line": 52
|
|
13716
|
+
},
|
|
13717
|
+
"name": "of",
|
|
13718
|
+
"parameters": [
|
|
13719
|
+
{
|
|
13720
|
+
"name": "project",
|
|
13721
|
+
"type": {
|
|
13722
|
+
"fqn": "projen.Project"
|
|
13723
|
+
}
|
|
13724
|
+
}
|
|
13725
|
+
],
|
|
13726
|
+
"returns": {
|
|
13727
|
+
"optional": true,
|
|
13728
|
+
"type": {
|
|
13729
|
+
"fqn": "projen.github.GitHub"
|
|
13730
|
+
}
|
|
13731
|
+
},
|
|
13732
|
+
"static": true
|
|
13733
|
+
},
|
|
13390
13734
|
{
|
|
13391
13735
|
"docs": {
|
|
13392
13736
|
"stability": "experimental"
|
|
13393
13737
|
},
|
|
13394
13738
|
"locationInModule": {
|
|
13395
13739
|
"filename": "src/github/github.ts",
|
|
13396
|
-
"line":
|
|
13740
|
+
"line": 104
|
|
13397
13741
|
},
|
|
13398
13742
|
"name": "addDependabot",
|
|
13399
13743
|
"parameters": [
|
|
@@ -13417,7 +13761,7 @@
|
|
|
13417
13761
|
},
|
|
13418
13762
|
"locationInModule": {
|
|
13419
13763
|
"filename": "src/github/github.ts",
|
|
13420
|
-
"line":
|
|
13764
|
+
"line": 100
|
|
13421
13765
|
},
|
|
13422
13766
|
"name": "addPullRequestTemplate",
|
|
13423
13767
|
"parameters": [
|
|
@@ -13444,7 +13788,7 @@
|
|
|
13444
13788
|
},
|
|
13445
13789
|
"locationInModule": {
|
|
13446
13790
|
"filename": "src/github/github.ts",
|
|
13447
|
-
"line":
|
|
13791
|
+
"line": 95
|
|
13448
13792
|
},
|
|
13449
13793
|
"name": "addWorkflow",
|
|
13450
13794
|
"parameters": [
|
|
@@ -13472,7 +13816,7 @@
|
|
|
13472
13816
|
},
|
|
13473
13817
|
"locationInModule": {
|
|
13474
13818
|
"filename": "src/github/github.ts",
|
|
13475
|
-
"line":
|
|
13819
|
+
"line": 112
|
|
13476
13820
|
},
|
|
13477
13821
|
"name": "tryFindWorkflow",
|
|
13478
13822
|
"parameters": [
|
|
@@ -13505,7 +13849,7 @@
|
|
|
13505
13849
|
"immutable": true,
|
|
13506
13850
|
"locationInModule": {
|
|
13507
13851
|
"filename": "src/github/github.ts",
|
|
13508
|
-
"line":
|
|
13852
|
+
"line": 85
|
|
13509
13853
|
},
|
|
13510
13854
|
"name": "workflows",
|
|
13511
13855
|
"type": {
|
|
@@ -13525,7 +13869,7 @@
|
|
|
13525
13869
|
"immutable": true,
|
|
13526
13870
|
"locationInModule": {
|
|
13527
13871
|
"filename": "src/github/github.ts",
|
|
13528
|
-
"line":
|
|
13872
|
+
"line": 66
|
|
13529
13873
|
},
|
|
13530
13874
|
"name": "workflowsEnabled",
|
|
13531
13875
|
"type": {
|
|
@@ -13541,7 +13885,7 @@
|
|
|
13541
13885
|
"immutable": true,
|
|
13542
13886
|
"locationInModule": {
|
|
13543
13887
|
"filename": "src/github/github.ts",
|
|
13544
|
-
"line":
|
|
13888
|
+
"line": 61
|
|
13545
13889
|
},
|
|
13546
13890
|
"name": "mergify",
|
|
13547
13891
|
"optional": true,
|
|
@@ -14117,7 +14461,7 @@
|
|
|
14117
14461
|
"kind": "interface",
|
|
14118
14462
|
"locationInModule": {
|
|
14119
14463
|
"filename": "src/github/task-workflow.ts",
|
|
14120
|
-
"line":
|
|
14464
|
+
"line": 196
|
|
14121
14465
|
},
|
|
14122
14466
|
"name": "GitIdentity",
|
|
14123
14467
|
"namespace": "github",
|
|
@@ -14131,7 +14475,7 @@
|
|
|
14131
14475
|
"immutable": true,
|
|
14132
14476
|
"locationInModule": {
|
|
14133
14477
|
"filename": "src/github/task-workflow.ts",
|
|
14134
|
-
"line":
|
|
14478
|
+
"line": 205
|
|
14135
14479
|
},
|
|
14136
14480
|
"name": "email",
|
|
14137
14481
|
"type": {
|
|
@@ -14147,7 +14491,7 @@
|
|
|
14147
14491
|
"immutable": true,
|
|
14148
14492
|
"locationInModule": {
|
|
14149
14493
|
"filename": "src/github/task-workflow.ts",
|
|
14150
|
-
"line":
|
|
14494
|
+
"line": 200
|
|
14151
14495
|
},
|
|
14152
14496
|
"name": "name",
|
|
14153
14497
|
"type": {
|
|
@@ -14173,7 +14517,7 @@
|
|
|
14173
14517
|
},
|
|
14174
14518
|
"locationInModule": {
|
|
14175
14519
|
"filename": "src/github/workflows.ts",
|
|
14176
|
-
"line":
|
|
14520
|
+
"line": 57
|
|
14177
14521
|
},
|
|
14178
14522
|
"parameters": [
|
|
14179
14523
|
{
|
|
@@ -14200,9 +14544,40 @@
|
|
|
14200
14544
|
"kind": "class",
|
|
14201
14545
|
"locationInModule": {
|
|
14202
14546
|
"filename": "src/github/workflows.ts",
|
|
14203
|
-
"line":
|
|
14547
|
+
"line": 36
|
|
14204
14548
|
},
|
|
14205
14549
|
"methods": [
|
|
14550
|
+
{
|
|
14551
|
+
"docs": {
|
|
14552
|
+
"stability": "experimental",
|
|
14553
|
+
"summary": "Adds a single job to the workflow."
|
|
14554
|
+
},
|
|
14555
|
+
"locationInModule": {
|
|
14556
|
+
"filename": "src/github/workflows.ts",
|
|
14557
|
+
"line": 89
|
|
14558
|
+
},
|
|
14559
|
+
"name": "addJob",
|
|
14560
|
+
"parameters": [
|
|
14561
|
+
{
|
|
14562
|
+
"docs": {
|
|
14563
|
+
"summary": "The job name (unique within the workflow)."
|
|
14564
|
+
},
|
|
14565
|
+
"name": "id",
|
|
14566
|
+
"type": {
|
|
14567
|
+
"primitive": "string"
|
|
14568
|
+
}
|
|
14569
|
+
},
|
|
14570
|
+
{
|
|
14571
|
+
"docs": {
|
|
14572
|
+
"summary": "The job specification."
|
|
14573
|
+
},
|
|
14574
|
+
"name": "job",
|
|
14575
|
+
"type": {
|
|
14576
|
+
"fqn": "projen.github.workflows.Job"
|
|
14577
|
+
}
|
|
14578
|
+
}
|
|
14579
|
+
]
|
|
14580
|
+
},
|
|
14206
14581
|
{
|
|
14207
14582
|
"docs": {
|
|
14208
14583
|
"stability": "experimental",
|
|
@@ -14210,7 +14585,7 @@
|
|
|
14210
14585
|
},
|
|
14211
14586
|
"locationInModule": {
|
|
14212
14587
|
"filename": "src/github/workflows.ts",
|
|
14213
|
-
"line":
|
|
14588
|
+
"line": 98
|
|
14214
14589
|
},
|
|
14215
14590
|
"name": "addJobs",
|
|
14216
14591
|
"parameters": [
|
|
@@ -14237,7 +14612,7 @@
|
|
|
14237
14612
|
},
|
|
14238
14613
|
"locationInModule": {
|
|
14239
14614
|
"filename": "src/github/workflows.ts",
|
|
14240
|
-
"line":
|
|
14615
|
+
"line": 77
|
|
14241
14616
|
},
|
|
14242
14617
|
"name": "on",
|
|
14243
14618
|
"parameters": [
|
|
@@ -14264,7 +14639,7 @@
|
|
|
14264
14639
|
"immutable": true,
|
|
14265
14640
|
"locationInModule": {
|
|
14266
14641
|
"filename": "src/github/workflows.ts",
|
|
14267
|
-
"line":
|
|
14642
|
+
"line": 40
|
|
14268
14643
|
},
|
|
14269
14644
|
"name": "name",
|
|
14270
14645
|
"type": {
|
|
@@ -14280,7 +14655,7 @@
|
|
|
14280
14655
|
"immutable": true,
|
|
14281
14656
|
"locationInModule": {
|
|
14282
14657
|
"filename": "src/github/workflows.ts",
|
|
14283
|
-
"line":
|
|
14658
|
+
"line": 47
|
|
14284
14659
|
},
|
|
14285
14660
|
"name": "concurrency",
|
|
14286
14661
|
"optional": true,
|
|
@@ -14297,7 +14672,7 @@
|
|
|
14297
14672
|
"immutable": true,
|
|
14298
14673
|
"locationInModule": {
|
|
14299
14674
|
"filename": "src/github/workflows.ts",
|
|
14300
|
-
"line":
|
|
14675
|
+
"line": 52
|
|
14301
14676
|
},
|
|
14302
14677
|
"name": "file",
|
|
14303
14678
|
"optional": true,
|
|
@@ -14319,7 +14694,7 @@
|
|
|
14319
14694
|
"kind": "interface",
|
|
14320
14695
|
"locationInModule": {
|
|
14321
14696
|
"filename": "src/github/workflows.ts",
|
|
14322
|
-
"line":
|
|
14697
|
+
"line": 13
|
|
14323
14698
|
},
|
|
14324
14699
|
"name": "GithubWorkflowOptions",
|
|
14325
14700
|
"namespace": "github",
|
|
@@ -14336,7 +14711,7 @@
|
|
|
14336
14711
|
"immutable": true,
|
|
14337
14712
|
"locationInModule": {
|
|
14338
14713
|
"filename": "src/github/workflows.ts",
|
|
14339
|
-
"line":
|
|
14714
|
+
"line": 26
|
|
14340
14715
|
},
|
|
14341
14716
|
"name": "concurrency",
|
|
14342
14717
|
"optional": true,
|
|
@@ -14354,7 +14729,7 @@
|
|
|
14354
14729
|
"immutable": true,
|
|
14355
14730
|
"locationInModule": {
|
|
14356
14731
|
"filename": "src/github/workflows.ts",
|
|
14357
|
-
"line":
|
|
14732
|
+
"line": 19
|
|
14358
14733
|
},
|
|
14359
14734
|
"name": "force",
|
|
14360
14735
|
"optional": true,
|
|
@@ -14374,7 +14749,7 @@
|
|
|
14374
14749
|
"kind": "interface",
|
|
14375
14750
|
"locationInModule": {
|
|
14376
14751
|
"filename": "src/github/workflows.ts",
|
|
14377
|
-
"line":
|
|
14752
|
+
"line": 238
|
|
14378
14753
|
},
|
|
14379
14754
|
"methods": [
|
|
14380
14755
|
{
|
|
@@ -14385,7 +14760,7 @@
|
|
|
14385
14760
|
},
|
|
14386
14761
|
"locationInModule": {
|
|
14387
14762
|
"filename": "src/github/workflows.ts",
|
|
14388
|
-
"line":
|
|
14763
|
+
"line": 242
|
|
14389
14764
|
},
|
|
14390
14765
|
"name": "renderJobs",
|
|
14391
14766
|
"returns": {
|
|
@@ -15207,7 +15582,7 @@
|
|
|
15207
15582
|
},
|
|
15208
15583
|
"locationInModule": {
|
|
15209
15584
|
"filename": "src/github/task-workflow.ts",
|
|
15210
|
-
"line":
|
|
15585
|
+
"line": 118
|
|
15211
15586
|
},
|
|
15212
15587
|
"parameters": [
|
|
15213
15588
|
{
|
|
@@ -15245,6 +15620,21 @@
|
|
|
15245
15620
|
"type": {
|
|
15246
15621
|
"primitive": "string"
|
|
15247
15622
|
}
|
|
15623
|
+
},
|
|
15624
|
+
{
|
|
15625
|
+
"docs": {
|
|
15626
|
+
"stability": "experimental"
|
|
15627
|
+
},
|
|
15628
|
+
"immutable": true,
|
|
15629
|
+
"locationInModule": {
|
|
15630
|
+
"filename": "src/github/task-workflow.ts",
|
|
15631
|
+
"line": 116
|
|
15632
|
+
},
|
|
15633
|
+
"name": "artifactsDirectory",
|
|
15634
|
+
"optional": true,
|
|
15635
|
+
"type": {
|
|
15636
|
+
"primitive": "string"
|
|
15637
|
+
}
|
|
15248
15638
|
}
|
|
15249
15639
|
],
|
|
15250
15640
|
"symbolId": "src/github/task-workflow:TaskWorkflow"
|
|
@@ -15647,7 +16037,7 @@
|
|
|
15647
16037
|
"kind": "interface",
|
|
15648
16038
|
"locationInModule": {
|
|
15649
16039
|
"filename": "src/github/workflows-model.ts",
|
|
15650
|
-
"line":
|
|
16040
|
+
"line": 696
|
|
15651
16041
|
},
|
|
15652
16042
|
"name": "BranchProtectionRuleOptions",
|
|
15653
16043
|
"namespace": "github.workflows",
|
|
@@ -15664,7 +16054,7 @@
|
|
|
15664
16054
|
"immutable": true,
|
|
15665
16055
|
"locationInModule": {
|
|
15666
16056
|
"filename": "src/github/workflows-model.ts",
|
|
15667
|
-
"line":
|
|
16057
|
+
"line": 702
|
|
15668
16058
|
},
|
|
15669
16059
|
"name": "types",
|
|
15670
16060
|
"optional": true,
|
|
@@ -15691,7 +16081,7 @@
|
|
|
15691
16081
|
"kind": "interface",
|
|
15692
16082
|
"locationInModule": {
|
|
15693
16083
|
"filename": "src/github/workflows-model.ts",
|
|
15694
|
-
"line":
|
|
16084
|
+
"line": 708
|
|
15695
16085
|
},
|
|
15696
16086
|
"name": "CheckRunOptions",
|
|
15697
16087
|
"namespace": "github.workflows",
|
|
@@ -15708,7 +16098,7 @@
|
|
|
15708
16098
|
"immutable": true,
|
|
15709
16099
|
"locationInModule": {
|
|
15710
16100
|
"filename": "src/github/workflows-model.ts",
|
|
15711
|
-
"line":
|
|
16101
|
+
"line": 714
|
|
15712
16102
|
},
|
|
15713
16103
|
"name": "types",
|
|
15714
16104
|
"optional": true,
|
|
@@ -15735,7 +16125,7 @@
|
|
|
15735
16125
|
"kind": "interface",
|
|
15736
16126
|
"locationInModule": {
|
|
15737
16127
|
"filename": "src/github/workflows-model.ts",
|
|
15738
|
-
"line":
|
|
16128
|
+
"line": 720
|
|
15739
16129
|
},
|
|
15740
16130
|
"name": "CheckSuiteOptions",
|
|
15741
16131
|
"namespace": "github.workflows",
|
|
@@ -15752,7 +16142,7 @@
|
|
|
15752
16142
|
"immutable": true,
|
|
15753
16143
|
"locationInModule": {
|
|
15754
16144
|
"filename": "src/github/workflows-model.ts",
|
|
15755
|
-
"line":
|
|
16145
|
+
"line": 726
|
|
15756
16146
|
},
|
|
15757
16147
|
"name": "types",
|
|
15758
16148
|
"optional": true,
|
|
@@ -15779,7 +16169,7 @@
|
|
|
15779
16169
|
"kind": "interface",
|
|
15780
16170
|
"locationInModule": {
|
|
15781
16171
|
"filename": "src/github/workflows-model.ts",
|
|
15782
|
-
"line":
|
|
16172
|
+
"line": 432
|
|
15783
16173
|
},
|
|
15784
16174
|
"name": "ContainerCredentials",
|
|
15785
16175
|
"namespace": "github.workflows",
|
|
@@ -15793,7 +16183,7 @@
|
|
|
15793
16183
|
"immutable": true,
|
|
15794
16184
|
"locationInModule": {
|
|
15795
16185
|
"filename": "src/github/workflows-model.ts",
|
|
15796
|
-
"line":
|
|
16186
|
+
"line": 437
|
|
15797
16187
|
},
|
|
15798
16188
|
"name": "password",
|
|
15799
16189
|
"type": {
|
|
@@ -15809,7 +16199,7 @@
|
|
|
15809
16199
|
"immutable": true,
|
|
15810
16200
|
"locationInModule": {
|
|
15811
16201
|
"filename": "src/github/workflows-model.ts",
|
|
15812
|
-
"line":
|
|
16202
|
+
"line": 434
|
|
15813
16203
|
},
|
|
15814
16204
|
"name": "username",
|
|
15815
16205
|
"type": {
|
|
@@ -15830,7 +16220,7 @@
|
|
|
15830
16220
|
"kind": "interface",
|
|
15831
16221
|
"locationInModule": {
|
|
15832
16222
|
"filename": "src/github/workflows-model.ts",
|
|
15833
|
-
"line":
|
|
16223
|
+
"line": 385
|
|
15834
16224
|
},
|
|
15835
16225
|
"name": "ContainerOptions",
|
|
15836
16226
|
"namespace": "github.workflows",
|
|
@@ -15845,7 +16235,7 @@
|
|
|
15845
16235
|
"immutable": true,
|
|
15846
16236
|
"locationInModule": {
|
|
15847
16237
|
"filename": "src/github/workflows-model.ts",
|
|
15848
|
-
"line":
|
|
16238
|
+
"line": 390
|
|
15849
16239
|
},
|
|
15850
16240
|
"name": "image",
|
|
15851
16241
|
"type": {
|
|
@@ -15862,7 +16252,7 @@
|
|
|
15862
16252
|
"immutable": true,
|
|
15863
16253
|
"locationInModule": {
|
|
15864
16254
|
"filename": "src/github/workflows-model.ts",
|
|
15865
|
-
"line":
|
|
16255
|
+
"line": 398
|
|
15866
16256
|
},
|
|
15867
16257
|
"name": "credentials",
|
|
15868
16258
|
"optional": true,
|
|
@@ -15879,7 +16269,7 @@
|
|
|
15879
16269
|
"immutable": true,
|
|
15880
16270
|
"locationInModule": {
|
|
15881
16271
|
"filename": "src/github/workflows-model.ts",
|
|
15882
|
-
"line":
|
|
16272
|
+
"line": 403
|
|
15883
16273
|
},
|
|
15884
16274
|
"name": "env",
|
|
15885
16275
|
"optional": true,
|
|
@@ -15902,7 +16292,7 @@
|
|
|
15902
16292
|
"immutable": true,
|
|
15903
16293
|
"locationInModule": {
|
|
15904
16294
|
"filename": "src/github/workflows-model.ts",
|
|
15905
|
-
"line":
|
|
16295
|
+
"line": 426
|
|
15906
16296
|
},
|
|
15907
16297
|
"name": "options",
|
|
15908
16298
|
"optional": true,
|
|
@@ -15924,7 +16314,7 @@
|
|
|
15924
16314
|
"immutable": true,
|
|
15925
16315
|
"locationInModule": {
|
|
15926
16316
|
"filename": "src/github/workflows-model.ts",
|
|
15927
|
-
"line":
|
|
16317
|
+
"line": 408
|
|
15928
16318
|
},
|
|
15929
16319
|
"name": "ports",
|
|
15930
16320
|
"optional": true,
|
|
@@ -15947,7 +16337,7 @@
|
|
|
15947
16337
|
"immutable": true,
|
|
15948
16338
|
"locationInModule": {
|
|
15949
16339
|
"filename": "src/github/workflows-model.ts",
|
|
15950
|
-
"line":
|
|
16340
|
+
"line": 419
|
|
15951
16341
|
},
|
|
15952
16342
|
"name": "volumes",
|
|
15953
16343
|
"optional": true,
|
|
@@ -15974,7 +16364,7 @@
|
|
|
15974
16364
|
"kind": "interface",
|
|
15975
16365
|
"locationInModule": {
|
|
15976
16366
|
"filename": "src/github/workflows-model.ts",
|
|
15977
|
-
"line":
|
|
16367
|
+
"line": 985
|
|
15978
16368
|
},
|
|
15979
16369
|
"name": "CreateOptions",
|
|
15980
16370
|
"namespace": "github.workflows",
|
|
@@ -15991,7 +16381,7 @@
|
|
|
15991
16381
|
"kind": "interface",
|
|
15992
16382
|
"locationInModule": {
|
|
15993
16383
|
"filename": "src/github/workflows-model.ts",
|
|
15994
|
-
"line":
|
|
16384
|
+
"line": 674
|
|
15995
16385
|
},
|
|
15996
16386
|
"name": "CronScheduleOptions",
|
|
15997
16387
|
"namespace": "github.workflows",
|
|
@@ -16005,7 +16395,7 @@
|
|
|
16005
16395
|
"immutable": true,
|
|
16006
16396
|
"locationInModule": {
|
|
16007
16397
|
"filename": "src/github/workflows-model.ts",
|
|
16008
|
-
"line":
|
|
16398
|
+
"line": 678
|
|
16009
16399
|
},
|
|
16010
16400
|
"name": "cron",
|
|
16011
16401
|
"type": {
|
|
@@ -16026,7 +16416,7 @@
|
|
|
16026
16416
|
"kind": "interface",
|
|
16027
16417
|
"locationInModule": {
|
|
16028
16418
|
"filename": "src/github/workflows-model.ts",
|
|
16029
|
-
"line":
|
|
16419
|
+
"line": 990
|
|
16030
16420
|
},
|
|
16031
16421
|
"name": "DeleteOptions",
|
|
16032
16422
|
"namespace": "github.workflows",
|
|
@@ -16043,7 +16433,7 @@
|
|
|
16043
16433
|
"kind": "interface",
|
|
16044
16434
|
"locationInModule": {
|
|
16045
16435
|
"filename": "src/github/workflows-model.ts",
|
|
16046
|
-
"line":
|
|
16436
|
+
"line": 995
|
|
16047
16437
|
},
|
|
16048
16438
|
"name": "DeploymentOptions",
|
|
16049
16439
|
"namespace": "github.workflows",
|
|
@@ -16060,7 +16450,7 @@
|
|
|
16060
16450
|
"kind": "interface",
|
|
16061
16451
|
"locationInModule": {
|
|
16062
16452
|
"filename": "src/github/workflows-model.ts",
|
|
16063
|
-
"line":
|
|
16453
|
+
"line": 1000
|
|
16064
16454
|
},
|
|
16065
16455
|
"name": "DeploymentStatusOptions",
|
|
16066
16456
|
"namespace": "github.workflows",
|
|
@@ -16077,7 +16467,7 @@
|
|
|
16077
16467
|
"kind": "interface",
|
|
16078
16468
|
"locationInModule": {
|
|
16079
16469
|
"filename": "src/github/workflows-model.ts",
|
|
16080
|
-
"line":
|
|
16470
|
+
"line": 744
|
|
16081
16471
|
},
|
|
16082
16472
|
"name": "DiscussionCommentOptions",
|
|
16083
16473
|
"namespace": "github.workflows",
|
|
@@ -16094,7 +16484,7 @@
|
|
|
16094
16484
|
"immutable": true,
|
|
16095
16485
|
"locationInModule": {
|
|
16096
16486
|
"filename": "src/github/workflows-model.ts",
|
|
16097
|
-
"line":
|
|
16487
|
+
"line": 750
|
|
16098
16488
|
},
|
|
16099
16489
|
"name": "types",
|
|
16100
16490
|
"optional": true,
|
|
@@ -16121,7 +16511,7 @@
|
|
|
16121
16511
|
"kind": "interface",
|
|
16122
16512
|
"locationInModule": {
|
|
16123
16513
|
"filename": "src/github/workflows-model.ts",
|
|
16124
|
-
"line":
|
|
16514
|
+
"line": 732
|
|
16125
16515
|
},
|
|
16126
16516
|
"name": "DiscussionOptions",
|
|
16127
16517
|
"namespace": "github.workflows",
|
|
@@ -16138,7 +16528,7 @@
|
|
|
16138
16528
|
"immutable": true,
|
|
16139
16529
|
"locationInModule": {
|
|
16140
16530
|
"filename": "src/github/workflows-model.ts",
|
|
16141
|
-
"line":
|
|
16531
|
+
"line": 738
|
|
16142
16532
|
},
|
|
16143
16533
|
"name": "types",
|
|
16144
16534
|
"optional": true,
|
|
@@ -16165,7 +16555,7 @@
|
|
|
16165
16555
|
"kind": "interface",
|
|
16166
16556
|
"locationInModule": {
|
|
16167
16557
|
"filename": "src/github/workflows-model.ts",
|
|
16168
|
-
"line":
|
|
16558
|
+
"line": 1005
|
|
16169
16559
|
},
|
|
16170
16560
|
"name": "ForkOptions",
|
|
16171
16561
|
"namespace": "github.workflows",
|
|
@@ -16182,7 +16572,7 @@
|
|
|
16182
16572
|
"kind": "interface",
|
|
16183
16573
|
"locationInModule": {
|
|
16184
16574
|
"filename": "src/github/workflows-model.ts",
|
|
16185
|
-
"line":
|
|
16575
|
+
"line": 1010
|
|
16186
16576
|
},
|
|
16187
16577
|
"name": "GollumOptions",
|
|
16188
16578
|
"namespace": "github.workflows",
|
|
@@ -16199,7 +16589,7 @@
|
|
|
16199
16589
|
"kind": "interface",
|
|
16200
16590
|
"locationInModule": {
|
|
16201
16591
|
"filename": "src/github/workflows-model.ts",
|
|
16202
|
-
"line":
|
|
16592
|
+
"line": 756
|
|
16203
16593
|
},
|
|
16204
16594
|
"name": "IssueCommentOptions",
|
|
16205
16595
|
"namespace": "github.workflows",
|
|
@@ -16216,7 +16606,7 @@
|
|
|
16216
16606
|
"immutable": true,
|
|
16217
16607
|
"locationInModule": {
|
|
16218
16608
|
"filename": "src/github/workflows-model.ts",
|
|
16219
|
-
"line":
|
|
16609
|
+
"line": 762
|
|
16220
16610
|
},
|
|
16221
16611
|
"name": "types",
|
|
16222
16612
|
"optional": true,
|
|
@@ -16243,7 +16633,7 @@
|
|
|
16243
16633
|
"kind": "interface",
|
|
16244
16634
|
"locationInModule": {
|
|
16245
16635
|
"filename": "src/github/workflows-model.ts",
|
|
16246
|
-
"line":
|
|
16636
|
+
"line": 768
|
|
16247
16637
|
},
|
|
16248
16638
|
"name": "IssuesOptions",
|
|
16249
16639
|
"namespace": "github.workflows",
|
|
@@ -16260,7 +16650,7 @@
|
|
|
16260
16650
|
"immutable": true,
|
|
16261
16651
|
"locationInModule": {
|
|
16262
16652
|
"filename": "src/github/workflows-model.ts",
|
|
16263
|
-
"line":
|
|
16653
|
+
"line": 774
|
|
16264
16654
|
},
|
|
16265
16655
|
"name": "types",
|
|
16266
16656
|
"optional": true,
|
|
@@ -16608,6 +16998,24 @@
|
|
|
16608
16998
|
"type": {
|
|
16609
16999
|
"primitive": "number"
|
|
16610
17000
|
}
|
|
17001
|
+
},
|
|
17002
|
+
{
|
|
17003
|
+
"abstract": true,
|
|
17004
|
+
"docs": {
|
|
17005
|
+
"remarks": "Traslates into `actions/setup-xxx` steps at\nthe beginning of the job.",
|
|
17006
|
+
"stability": "experimental",
|
|
17007
|
+
"summary": "Tools required for this job."
|
|
17008
|
+
},
|
|
17009
|
+
"immutable": true,
|
|
17010
|
+
"locationInModule": {
|
|
17011
|
+
"filename": "src/github/workflows-model.ts",
|
|
17012
|
+
"line": 139
|
|
17013
|
+
},
|
|
17014
|
+
"name": "tools",
|
|
17015
|
+
"optional": true,
|
|
17016
|
+
"type": {
|
|
17017
|
+
"fqn": "projen.github.workflows.Tools"
|
|
17018
|
+
}
|
|
16611
17019
|
}
|
|
16612
17020
|
],
|
|
16613
17021
|
"symbolId": "src/github/workflows-model:Job"
|
|
@@ -16623,7 +17031,7 @@
|
|
|
16623
17031
|
"kind": "interface",
|
|
16624
17032
|
"locationInModule": {
|
|
16625
17033
|
"filename": "src/github/workflows-model.ts",
|
|
16626
|
-
"line":
|
|
17034
|
+
"line": 235
|
|
16627
17035
|
},
|
|
16628
17036
|
"name": "JobDefaults",
|
|
16629
17037
|
"namespace": "github.workflows",
|
|
@@ -16637,7 +17045,7 @@
|
|
|
16637
17045
|
"immutable": true,
|
|
16638
17046
|
"locationInModule": {
|
|
16639
17047
|
"filename": "src/github/workflows-model.ts",
|
|
16640
|
-
"line":
|
|
17048
|
+
"line": 237
|
|
16641
17049
|
},
|
|
16642
17050
|
"name": "run",
|
|
16643
17051
|
"optional": true,
|
|
@@ -16659,7 +17067,7 @@
|
|
|
16659
17067
|
"kind": "interface",
|
|
16660
17068
|
"locationInModule": {
|
|
16661
17069
|
"filename": "src/github/workflows-model.ts",
|
|
16662
|
-
"line":
|
|
17070
|
+
"line": 355
|
|
16663
17071
|
},
|
|
16664
17072
|
"name": "JobMatrix",
|
|
16665
17073
|
"namespace": "github.workflows",
|
|
@@ -16674,7 +17082,7 @@
|
|
|
16674
17082
|
"immutable": true,
|
|
16675
17083
|
"locationInModule": {
|
|
16676
17084
|
"filename": "src/github/workflows-model.ts",
|
|
16677
|
-
"line":
|
|
17085
|
+
"line": 364
|
|
16678
17086
|
},
|
|
16679
17087
|
"name": "domain",
|
|
16680
17088
|
"optional": true,
|
|
@@ -16702,7 +17110,7 @@
|
|
|
16702
17110
|
"immutable": true,
|
|
16703
17111
|
"locationInModule": {
|
|
16704
17112
|
"filename": "src/github/workflows-model.ts",
|
|
16705
|
-
"line":
|
|
17113
|
+
"line": 379
|
|
16706
17114
|
},
|
|
16707
17115
|
"name": "exclude",
|
|
16708
17116
|
"optional": true,
|
|
@@ -16730,7 +17138,7 @@
|
|
|
16730
17138
|
"immutable": true,
|
|
16731
17139
|
"locationInModule": {
|
|
16732
17140
|
"filename": "src/github/workflows-model.ts",
|
|
16733
|
-
"line":
|
|
17141
|
+
"line": 372
|
|
16734
17142
|
},
|
|
16735
17143
|
"name": "include",
|
|
16736
17144
|
"optional": true,
|
|
@@ -16761,7 +17169,7 @@
|
|
|
16761
17169
|
"kind": "enum",
|
|
16762
17170
|
"locationInModule": {
|
|
16763
17171
|
"filename": "src/github/workflows-model.ts",
|
|
16764
|
-
"line":
|
|
17172
|
+
"line": 206
|
|
16765
17173
|
},
|
|
16766
17174
|
"members": [
|
|
16767
17175
|
{
|
|
@@ -16802,7 +17210,7 @@
|
|
|
16802
17210
|
"kind": "interface",
|
|
16803
17211
|
"locationInModule": {
|
|
16804
17212
|
"filename": "src/github/workflows-model.ts",
|
|
16805
|
-
"line":
|
|
17213
|
+
"line": 190
|
|
16806
17214
|
},
|
|
16807
17215
|
"name": "JobPermissions",
|
|
16808
17216
|
"namespace": "github.workflows",
|
|
@@ -16815,7 +17223,7 @@
|
|
|
16815
17223
|
"immutable": true,
|
|
16816
17224
|
"locationInModule": {
|
|
16817
17225
|
"filename": "src/github/workflows-model.ts",
|
|
16818
|
-
"line":
|
|
17226
|
+
"line": 191
|
|
16819
17227
|
},
|
|
16820
17228
|
"name": "actions",
|
|
16821
17229
|
"optional": true,
|
|
@@ -16831,7 +17239,7 @@
|
|
|
16831
17239
|
"immutable": true,
|
|
16832
17240
|
"locationInModule": {
|
|
16833
17241
|
"filename": "src/github/workflows-model.ts",
|
|
16834
|
-
"line":
|
|
17242
|
+
"line": 192
|
|
16835
17243
|
},
|
|
16836
17244
|
"name": "checks",
|
|
16837
17245
|
"optional": true,
|
|
@@ -16847,7 +17255,7 @@
|
|
|
16847
17255
|
"immutable": true,
|
|
16848
17256
|
"locationInModule": {
|
|
16849
17257
|
"filename": "src/github/workflows-model.ts",
|
|
16850
|
-
"line":
|
|
17258
|
+
"line": 193
|
|
16851
17259
|
},
|
|
16852
17260
|
"name": "contents",
|
|
16853
17261
|
"optional": true,
|
|
@@ -16863,7 +17271,7 @@
|
|
|
16863
17271
|
"immutable": true,
|
|
16864
17272
|
"locationInModule": {
|
|
16865
17273
|
"filename": "src/github/workflows-model.ts",
|
|
16866
|
-
"line":
|
|
17274
|
+
"line": 194
|
|
16867
17275
|
},
|
|
16868
17276
|
"name": "deployments",
|
|
16869
17277
|
"optional": true,
|
|
@@ -16879,7 +17287,7 @@
|
|
|
16879
17287
|
"immutable": true,
|
|
16880
17288
|
"locationInModule": {
|
|
16881
17289
|
"filename": "src/github/workflows-model.ts",
|
|
16882
|
-
"line":
|
|
17290
|
+
"line": 195
|
|
16883
17291
|
},
|
|
16884
17292
|
"name": "issues",
|
|
16885
17293
|
"optional": true,
|
|
@@ -16895,7 +17303,7 @@
|
|
|
16895
17303
|
"immutable": true,
|
|
16896
17304
|
"locationInModule": {
|
|
16897
17305
|
"filename": "src/github/workflows-model.ts",
|
|
16898
|
-
"line":
|
|
17306
|
+
"line": 196
|
|
16899
17307
|
},
|
|
16900
17308
|
"name": "packages",
|
|
16901
17309
|
"optional": true,
|
|
@@ -16911,7 +17319,7 @@
|
|
|
16911
17319
|
"immutable": true,
|
|
16912
17320
|
"locationInModule": {
|
|
16913
17321
|
"filename": "src/github/workflows-model.ts",
|
|
16914
|
-
"line":
|
|
17322
|
+
"line": 197
|
|
16915
17323
|
},
|
|
16916
17324
|
"name": "pullRequests",
|
|
16917
17325
|
"optional": true,
|
|
@@ -16927,7 +17335,7 @@
|
|
|
16927
17335
|
"immutable": true,
|
|
16928
17336
|
"locationInModule": {
|
|
16929
17337
|
"filename": "src/github/workflows-model.ts",
|
|
16930
|
-
"line":
|
|
17338
|
+
"line": 198
|
|
16931
17339
|
},
|
|
16932
17340
|
"name": "repositoryProjects",
|
|
16933
17341
|
"optional": true,
|
|
@@ -16943,7 +17351,7 @@
|
|
|
16943
17351
|
"immutable": true,
|
|
16944
17352
|
"locationInModule": {
|
|
16945
17353
|
"filename": "src/github/workflows-model.ts",
|
|
16946
|
-
"line":
|
|
17354
|
+
"line": 199
|
|
16947
17355
|
},
|
|
16948
17356
|
"name": "securityEvents",
|
|
16949
17357
|
"optional": true,
|
|
@@ -16959,7 +17367,7 @@
|
|
|
16959
17367
|
"immutable": true,
|
|
16960
17368
|
"locationInModule": {
|
|
16961
17369
|
"filename": "src/github/workflows-model.ts",
|
|
16962
|
-
"line":
|
|
17370
|
+
"line": 200
|
|
16963
17371
|
},
|
|
16964
17372
|
"name": "statuses",
|
|
16965
17373
|
"optional": true,
|
|
@@ -16981,7 +17389,7 @@
|
|
|
16981
17389
|
"kind": "interface",
|
|
16982
17390
|
"locationInModule": {
|
|
16983
17391
|
"filename": "src/github/workflows-model.ts",
|
|
16984
|
-
"line":
|
|
17392
|
+
"line": 260
|
|
16985
17393
|
},
|
|
16986
17394
|
"name": "JobStep",
|
|
16987
17395
|
"namespace": "github.workflows",
|
|
@@ -16996,7 +17404,7 @@
|
|
|
16996
17404
|
"immutable": true,
|
|
16997
17405
|
"locationInModule": {
|
|
16998
17406
|
"filename": "src/github/workflows-model.ts",
|
|
16999
|
-
"line":
|
|
17407
|
+
"line": 311
|
|
17000
17408
|
},
|
|
17001
17409
|
"name": "continueOnError",
|
|
17002
17410
|
"optional": true,
|
|
@@ -17014,7 +17422,7 @@
|
|
|
17014
17422
|
"immutable": true,
|
|
17015
17423
|
"locationInModule": {
|
|
17016
17424
|
"filename": "src/github/workflows-model.ts",
|
|
17017
|
-
"line":
|
|
17425
|
+
"line": 305
|
|
17018
17426
|
},
|
|
17019
17427
|
"name": "env",
|
|
17020
17428
|
"optional": true,
|
|
@@ -17037,7 +17445,7 @@
|
|
|
17037
17445
|
"immutable": true,
|
|
17038
17446
|
"locationInModule": {
|
|
17039
17447
|
"filename": "src/github/workflows-model.ts",
|
|
17040
|
-
"line":
|
|
17448
|
+
"line": 265
|
|
17041
17449
|
},
|
|
17042
17450
|
"name": "id",
|
|
17043
17451
|
"optional": true,
|
|
@@ -17055,7 +17463,7 @@
|
|
|
17055
17463
|
"immutable": true,
|
|
17056
17464
|
"locationInModule": {
|
|
17057
17465
|
"filename": "src/github/workflows-model.ts",
|
|
17058
|
-
"line":
|
|
17466
|
+
"line": 272
|
|
17059
17467
|
},
|
|
17060
17468
|
"name": "if",
|
|
17061
17469
|
"optional": true,
|
|
@@ -17072,7 +17480,7 @@
|
|
|
17072
17480
|
"immutable": true,
|
|
17073
17481
|
"locationInModule": {
|
|
17074
17482
|
"filename": "src/github/workflows-model.ts",
|
|
17075
|
-
"line":
|
|
17483
|
+
"line": 277
|
|
17076
17484
|
},
|
|
17077
17485
|
"name": "name",
|
|
17078
17486
|
"optional": true,
|
|
@@ -17090,7 +17498,7 @@
|
|
|
17090
17498
|
"immutable": true,
|
|
17091
17499
|
"locationInModule": {
|
|
17092
17500
|
"filename": "src/github/workflows-model.ts",
|
|
17093
|
-
"line":
|
|
17501
|
+
"line": 292
|
|
17094
17502
|
},
|
|
17095
17503
|
"name": "run",
|
|
17096
17504
|
"optional": true,
|
|
@@ -17107,7 +17515,7 @@
|
|
|
17107
17515
|
"immutable": true,
|
|
17108
17516
|
"locationInModule": {
|
|
17109
17517
|
"filename": "src/github/workflows-model.ts",
|
|
17110
|
-
"line":
|
|
17518
|
+
"line": 316
|
|
17111
17519
|
},
|
|
17112
17520
|
"name": "timeoutMinutes",
|
|
17113
17521
|
"optional": true,
|
|
@@ -17125,7 +17533,7 @@
|
|
|
17125
17533
|
"immutable": true,
|
|
17126
17534
|
"locationInModule": {
|
|
17127
17535
|
"filename": "src/github/workflows-model.ts",
|
|
17128
|
-
"line":
|
|
17536
|
+
"line": 285
|
|
17129
17537
|
},
|
|
17130
17538
|
"name": "uses",
|
|
17131
17539
|
"optional": true,
|
|
@@ -17143,7 +17551,7 @@
|
|
|
17143
17551
|
"immutable": true,
|
|
17144
17552
|
"locationInModule": {
|
|
17145
17553
|
"filename": "src/github/workflows-model.ts",
|
|
17146
|
-
"line":
|
|
17554
|
+
"line": 299
|
|
17147
17555
|
},
|
|
17148
17556
|
"name": "with",
|
|
17149
17557
|
"optional": true,
|
|
@@ -17170,7 +17578,7 @@
|
|
|
17170
17578
|
"kind": "interface",
|
|
17171
17579
|
"locationInModule": {
|
|
17172
17580
|
"filename": "src/github/workflows-model.ts",
|
|
17173
|
-
"line":
|
|
17581
|
+
"line": 220
|
|
17174
17582
|
},
|
|
17175
17583
|
"name": "JobStepOutput",
|
|
17176
17584
|
"namespace": "github.workflows",
|
|
@@ -17184,7 +17592,7 @@
|
|
|
17184
17592
|
"immutable": true,
|
|
17185
17593
|
"locationInModule": {
|
|
17186
17594
|
"filename": "src/github/workflows-model.ts",
|
|
17187
|
-
"line":
|
|
17595
|
+
"line": 229
|
|
17188
17596
|
},
|
|
17189
17597
|
"name": "outputName",
|
|
17190
17598
|
"type": {
|
|
@@ -17200,7 +17608,7 @@
|
|
|
17200
17608
|
"immutable": true,
|
|
17201
17609
|
"locationInModule": {
|
|
17202
17610
|
"filename": "src/github/workflows-model.ts",
|
|
17203
|
-
"line":
|
|
17611
|
+
"line": 224
|
|
17204
17612
|
},
|
|
17205
17613
|
"name": "stepId",
|
|
17206
17614
|
"type": {
|
|
@@ -17222,7 +17630,7 @@
|
|
|
17222
17630
|
"kind": "interface",
|
|
17223
17631
|
"locationInModule": {
|
|
17224
17632
|
"filename": "src/github/workflows-model.ts",
|
|
17225
|
-
"line":
|
|
17633
|
+
"line": 323
|
|
17226
17634
|
},
|
|
17227
17635
|
"name": "JobStrategy",
|
|
17228
17636
|
"namespace": "github.workflows",
|
|
@@ -17237,7 +17645,7 @@
|
|
|
17237
17645
|
"immutable": true,
|
|
17238
17646
|
"locationInModule": {
|
|
17239
17647
|
"filename": "src/github/workflows-model.ts",
|
|
17240
|
-
"line":
|
|
17648
|
+
"line": 341
|
|
17241
17649
|
},
|
|
17242
17650
|
"name": "failFast",
|
|
17243
17651
|
"optional": true,
|
|
@@ -17255,7 +17663,7 @@
|
|
|
17255
17663
|
"immutable": true,
|
|
17256
17664
|
"locationInModule": {
|
|
17257
17665
|
"filename": "src/github/workflows-model.ts",
|
|
17258
|
-
"line":
|
|
17666
|
+
"line": 335
|
|
17259
17667
|
},
|
|
17260
17668
|
"name": "matrix",
|
|
17261
17669
|
"optional": true,
|
|
@@ -17273,7 +17681,7 @@
|
|
|
17273
17681
|
"immutable": true,
|
|
17274
17682
|
"locationInModule": {
|
|
17275
17683
|
"filename": "src/github/workflows-model.ts",
|
|
17276
|
-
"line":
|
|
17684
|
+
"line": 349
|
|
17277
17685
|
},
|
|
17278
17686
|
"name": "maxParallel",
|
|
17279
17687
|
"optional": true,
|
|
@@ -17295,7 +17703,7 @@
|
|
|
17295
17703
|
"kind": "interface",
|
|
17296
17704
|
"locationInModule": {
|
|
17297
17705
|
"filename": "src/github/workflows-model.ts",
|
|
17298
|
-
"line":
|
|
17706
|
+
"line": 780
|
|
17299
17707
|
},
|
|
17300
17708
|
"name": "LabelOptions",
|
|
17301
17709
|
"namespace": "github.workflows",
|
|
@@ -17312,7 +17720,7 @@
|
|
|
17312
17720
|
"immutable": true,
|
|
17313
17721
|
"locationInModule": {
|
|
17314
17722
|
"filename": "src/github/workflows-model.ts",
|
|
17315
|
-
"line":
|
|
17723
|
+
"line": 786
|
|
17316
17724
|
},
|
|
17317
17725
|
"name": "types",
|
|
17318
17726
|
"optional": true,
|
|
@@ -17339,7 +17747,7 @@
|
|
|
17339
17747
|
"kind": "interface",
|
|
17340
17748
|
"locationInModule": {
|
|
17341
17749
|
"filename": "src/github/workflows-model.ts",
|
|
17342
|
-
"line":
|
|
17750
|
+
"line": 792
|
|
17343
17751
|
},
|
|
17344
17752
|
"name": "MilestoneOptions",
|
|
17345
17753
|
"namespace": "github.workflows",
|
|
@@ -17356,7 +17764,7 @@
|
|
|
17356
17764
|
"immutable": true,
|
|
17357
17765
|
"locationInModule": {
|
|
17358
17766
|
"filename": "src/github/workflows-model.ts",
|
|
17359
|
-
"line":
|
|
17767
|
+
"line": 798
|
|
17360
17768
|
},
|
|
17361
17769
|
"name": "types",
|
|
17362
17770
|
"optional": true,
|
|
@@ -17383,7 +17791,7 @@
|
|
|
17383
17791
|
"kind": "interface",
|
|
17384
17792
|
"locationInModule": {
|
|
17385
17793
|
"filename": "src/github/workflows-model.ts",
|
|
17386
|
-
"line":
|
|
17794
|
+
"line": 1015
|
|
17387
17795
|
},
|
|
17388
17796
|
"name": "PageBuildOptions",
|
|
17389
17797
|
"namespace": "github.workflows",
|
|
@@ -17400,7 +17808,7 @@
|
|
|
17400
17808
|
"kind": "interface",
|
|
17401
17809
|
"locationInModule": {
|
|
17402
17810
|
"filename": "src/github/workflows-model.ts",
|
|
17403
|
-
"line":
|
|
17811
|
+
"line": 816
|
|
17404
17812
|
},
|
|
17405
17813
|
"name": "ProjectCardOptions",
|
|
17406
17814
|
"namespace": "github.workflows",
|
|
@@ -17417,7 +17825,7 @@
|
|
|
17417
17825
|
"immutable": true,
|
|
17418
17826
|
"locationInModule": {
|
|
17419
17827
|
"filename": "src/github/workflows-model.ts",
|
|
17420
|
-
"line":
|
|
17828
|
+
"line": 822
|
|
17421
17829
|
},
|
|
17422
17830
|
"name": "types",
|
|
17423
17831
|
"optional": true,
|
|
@@ -17444,7 +17852,7 @@
|
|
|
17444
17852
|
"kind": "interface",
|
|
17445
17853
|
"locationInModule": {
|
|
17446
17854
|
"filename": "src/github/workflows-model.ts",
|
|
17447
|
-
"line":
|
|
17855
|
+
"line": 828
|
|
17448
17856
|
},
|
|
17449
17857
|
"name": "ProjectColumnOptions",
|
|
17450
17858
|
"namespace": "github.workflows",
|
|
@@ -17461,7 +17869,7 @@
|
|
|
17461
17869
|
"immutable": true,
|
|
17462
17870
|
"locationInModule": {
|
|
17463
17871
|
"filename": "src/github/workflows-model.ts",
|
|
17464
|
-
"line":
|
|
17872
|
+
"line": 834
|
|
17465
17873
|
},
|
|
17466
17874
|
"name": "types",
|
|
17467
17875
|
"optional": true,
|
|
@@ -17488,7 +17896,7 @@
|
|
|
17488
17896
|
"kind": "interface",
|
|
17489
17897
|
"locationInModule": {
|
|
17490
17898
|
"filename": "src/github/workflows-model.ts",
|
|
17491
|
-
"line":
|
|
17899
|
+
"line": 804
|
|
17492
17900
|
},
|
|
17493
17901
|
"name": "ProjectOptions",
|
|
17494
17902
|
"namespace": "github.workflows",
|
|
@@ -17505,7 +17913,7 @@
|
|
|
17505
17913
|
"immutable": true,
|
|
17506
17914
|
"locationInModule": {
|
|
17507
17915
|
"filename": "src/github/workflows-model.ts",
|
|
17508
|
-
"line":
|
|
17916
|
+
"line": 810
|
|
17509
17917
|
},
|
|
17510
17918
|
"name": "types",
|
|
17511
17919
|
"optional": true,
|
|
@@ -17532,7 +17940,7 @@
|
|
|
17532
17940
|
"kind": "interface",
|
|
17533
17941
|
"locationInModule": {
|
|
17534
17942
|
"filename": "src/github/workflows-model.ts",
|
|
17535
|
-
"line":
|
|
17943
|
+
"line": 1020
|
|
17536
17944
|
},
|
|
17537
17945
|
"name": "PublicOptions",
|
|
17538
17946
|
"namespace": "github.workflows",
|
|
@@ -17549,7 +17957,7 @@
|
|
|
17549
17957
|
"kind": "interface",
|
|
17550
17958
|
"locationInModule": {
|
|
17551
17959
|
"filename": "src/github/workflows-model.ts",
|
|
17552
|
-
"line":
|
|
17960
|
+
"line": 840
|
|
17553
17961
|
},
|
|
17554
17962
|
"name": "PullRequestOptions",
|
|
17555
17963
|
"namespace": "github.workflows",
|
|
@@ -17566,7 +17974,7 @@
|
|
|
17566
17974
|
"immutable": true,
|
|
17567
17975
|
"locationInModule": {
|
|
17568
17976
|
"filename": "src/github/workflows-model.ts",
|
|
17569
|
-
"line":
|
|
17977
|
+
"line": 846
|
|
17570
17978
|
},
|
|
17571
17979
|
"name": "types",
|
|
17572
17980
|
"optional": true,
|
|
@@ -17593,7 +18001,7 @@
|
|
|
17593
18001
|
"kind": "interface",
|
|
17594
18002
|
"locationInModule": {
|
|
17595
18003
|
"filename": "src/github/workflows-model.ts",
|
|
17596
|
-
"line":
|
|
18004
|
+
"line": 864
|
|
17597
18005
|
},
|
|
17598
18006
|
"name": "PullRequestReviewCommentOptions",
|
|
17599
18007
|
"namespace": "github.workflows",
|
|
@@ -17610,7 +18018,7 @@
|
|
|
17610
18018
|
"immutable": true,
|
|
17611
18019
|
"locationInModule": {
|
|
17612
18020
|
"filename": "src/github/workflows-model.ts",
|
|
17613
|
-
"line":
|
|
18021
|
+
"line": 870
|
|
17614
18022
|
},
|
|
17615
18023
|
"name": "types",
|
|
17616
18024
|
"optional": true,
|
|
@@ -17637,7 +18045,7 @@
|
|
|
17637
18045
|
"kind": "interface",
|
|
17638
18046
|
"locationInModule": {
|
|
17639
18047
|
"filename": "src/github/workflows-model.ts",
|
|
17640
|
-
"line":
|
|
18048
|
+
"line": 852
|
|
17641
18049
|
},
|
|
17642
18050
|
"name": "PullRequestReviewOptions",
|
|
17643
18051
|
"namespace": "github.workflows",
|
|
@@ -17654,7 +18062,7 @@
|
|
|
17654
18062
|
"immutable": true,
|
|
17655
18063
|
"locationInModule": {
|
|
17656
18064
|
"filename": "src/github/workflows-model.ts",
|
|
17657
|
-
"line":
|
|
18065
|
+
"line": 858
|
|
17658
18066
|
},
|
|
17659
18067
|
"name": "types",
|
|
17660
18068
|
"optional": true,
|
|
@@ -17684,7 +18092,7 @@
|
|
|
17684
18092
|
"kind": "interface",
|
|
17685
18093
|
"locationInModule": {
|
|
17686
18094
|
"filename": "src/github/workflows-model.ts",
|
|
17687
|
-
"line":
|
|
18095
|
+
"line": 876
|
|
17688
18096
|
},
|
|
17689
18097
|
"name": "PullRequestTargetOptions",
|
|
17690
18098
|
"namespace": "github.workflows",
|
|
@@ -17701,7 +18109,7 @@
|
|
|
17701
18109
|
"immutable": true,
|
|
17702
18110
|
"locationInModule": {
|
|
17703
18111
|
"filename": "src/github/workflows-model.ts",
|
|
17704
|
-
"line":
|
|
18112
|
+
"line": 882
|
|
17705
18113
|
},
|
|
17706
18114
|
"name": "types",
|
|
17707
18115
|
"optional": true,
|
|
@@ -17728,7 +18136,7 @@
|
|
|
17728
18136
|
"kind": "interface",
|
|
17729
18137
|
"locationInModule": {
|
|
17730
18138
|
"filename": "src/github/workflows-model.ts",
|
|
17731
|
-
"line":
|
|
18139
|
+
"line": 888
|
|
17732
18140
|
},
|
|
17733
18141
|
"name": "PushOptions",
|
|
17734
18142
|
"namespace": "github.workflows",
|
|
@@ -17744,7 +18152,7 @@
|
|
|
17744
18152
|
"immutable": true,
|
|
17745
18153
|
"locationInModule": {
|
|
17746
18154
|
"filename": "src/github/workflows-model.ts",
|
|
17747
|
-
"line":
|
|
18155
|
+
"line": 898
|
|
17748
18156
|
},
|
|
17749
18157
|
"name": "branches",
|
|
17750
18158
|
"optional": true,
|
|
@@ -17768,7 +18176,7 @@
|
|
|
17768
18176
|
"immutable": true,
|
|
17769
18177
|
"locationInModule": {
|
|
17770
18178
|
"filename": "src/github/workflows-model.ts",
|
|
17771
|
-
"line":
|
|
18179
|
+
"line": 920
|
|
17772
18180
|
},
|
|
17773
18181
|
"name": "paths",
|
|
17774
18182
|
"optional": true,
|
|
@@ -17792,7 +18200,7 @@
|
|
|
17792
18200
|
"immutable": true,
|
|
17793
18201
|
"locationInModule": {
|
|
17794
18202
|
"filename": "src/github/workflows-model.ts",
|
|
17795
|
-
"line":
|
|
18203
|
+
"line": 910
|
|
17796
18204
|
},
|
|
17797
18205
|
"name": "tags",
|
|
17798
18206
|
"optional": true,
|
|
@@ -17819,7 +18227,7 @@
|
|
|
17819
18227
|
"kind": "interface",
|
|
17820
18228
|
"locationInModule": {
|
|
17821
18229
|
"filename": "src/github/workflows-model.ts",
|
|
17822
|
-
"line":
|
|
18230
|
+
"line": 926
|
|
17823
18231
|
},
|
|
17824
18232
|
"name": "RegistryPackageOptions",
|
|
17825
18233
|
"namespace": "github.workflows",
|
|
@@ -17836,7 +18244,7 @@
|
|
|
17836
18244
|
"immutable": true,
|
|
17837
18245
|
"locationInModule": {
|
|
17838
18246
|
"filename": "src/github/workflows-model.ts",
|
|
17839
|
-
"line":
|
|
18247
|
+
"line": 932
|
|
17840
18248
|
},
|
|
17841
18249
|
"name": "types",
|
|
17842
18250
|
"optional": true,
|
|
@@ -17863,7 +18271,7 @@
|
|
|
17863
18271
|
"kind": "interface",
|
|
17864
18272
|
"locationInModule": {
|
|
17865
18273
|
"filename": "src/github/workflows-model.ts",
|
|
17866
|
-
"line":
|
|
18274
|
+
"line": 938
|
|
17867
18275
|
},
|
|
17868
18276
|
"name": "ReleaseOptions",
|
|
17869
18277
|
"namespace": "github.workflows",
|
|
@@ -17880,7 +18288,7 @@
|
|
|
17880
18288
|
"immutable": true,
|
|
17881
18289
|
"locationInModule": {
|
|
17882
18290
|
"filename": "src/github/workflows-model.ts",
|
|
17883
|
-
"line":
|
|
18291
|
+
"line": 944
|
|
17884
18292
|
},
|
|
17885
18293
|
"name": "types",
|
|
17886
18294
|
"optional": true,
|
|
@@ -17907,7 +18315,7 @@
|
|
|
17907
18315
|
"kind": "interface",
|
|
17908
18316
|
"locationInModule": {
|
|
17909
18317
|
"filename": "src/github/workflows-model.ts",
|
|
17910
|
-
"line":
|
|
18318
|
+
"line": 684
|
|
17911
18319
|
},
|
|
17912
18320
|
"name": "RepositoryDispatchOptions",
|
|
17913
18321
|
"namespace": "github.workflows",
|
|
@@ -17924,7 +18332,7 @@
|
|
|
17924
18332
|
"immutable": true,
|
|
17925
18333
|
"locationInModule": {
|
|
17926
18334
|
"filename": "src/github/workflows-model.ts",
|
|
17927
|
-
"line":
|
|
18335
|
+
"line": 690
|
|
17928
18336
|
},
|
|
17929
18337
|
"name": "types",
|
|
17930
18338
|
"optional": true,
|
|
@@ -17951,7 +18359,7 @@
|
|
|
17951
18359
|
"kind": "interface",
|
|
17952
18360
|
"locationInModule": {
|
|
17953
18361
|
"filename": "src/github/workflows-model.ts",
|
|
17954
|
-
"line":
|
|
18362
|
+
"line": 243
|
|
17955
18363
|
},
|
|
17956
18364
|
"name": "RunSettings",
|
|
17957
18365
|
"namespace": "github.workflows",
|
|
@@ -17966,7 +18374,7 @@
|
|
|
17966
18374
|
"immutable": true,
|
|
17967
18375
|
"locationInModule": {
|
|
17968
18376
|
"filename": "src/github/workflows-model.ts",
|
|
17969
|
-
"line":
|
|
18377
|
+
"line": 249
|
|
17970
18378
|
},
|
|
17971
18379
|
"name": "shell",
|
|
17972
18380
|
"optional": true,
|
|
@@ -17983,7 +18391,7 @@
|
|
|
17983
18391
|
"immutable": true,
|
|
17984
18392
|
"locationInModule": {
|
|
17985
18393
|
"filename": "src/github/workflows-model.ts",
|
|
17986
|
-
"line":
|
|
18394
|
+
"line": 254
|
|
17987
18395
|
},
|
|
17988
18396
|
"name": "workingDirectory",
|
|
17989
18397
|
"optional": true,
|
|
@@ -18005,12 +18413,155 @@
|
|
|
18005
18413
|
"kind": "interface",
|
|
18006
18414
|
"locationInModule": {
|
|
18007
18415
|
"filename": "src/github/workflows-model.ts",
|
|
18008
|
-
"line":
|
|
18416
|
+
"line": 1025
|
|
18009
18417
|
},
|
|
18010
18418
|
"name": "StatusOptions",
|
|
18011
18419
|
"namespace": "github.workflows",
|
|
18012
18420
|
"symbolId": "src/github/workflows-model:StatusOptions"
|
|
18013
18421
|
},
|
|
18422
|
+
"projen.github.workflows.ToolRequirement": {
|
|
18423
|
+
"assembly": "projen",
|
|
18424
|
+
"datatype": true,
|
|
18425
|
+
"docs": {
|
|
18426
|
+
"stability": "experimental",
|
|
18427
|
+
"summary": "Version requirement for tools."
|
|
18428
|
+
},
|
|
18429
|
+
"fqn": "projen.github.workflows.ToolRequirement",
|
|
18430
|
+
"kind": "interface",
|
|
18431
|
+
"locationInModule": {
|
|
18432
|
+
"filename": "src/github/workflows-model.ts",
|
|
18433
|
+
"line": 180
|
|
18434
|
+
},
|
|
18435
|
+
"name": "ToolRequirement",
|
|
18436
|
+
"namespace": "github.workflows",
|
|
18437
|
+
"properties": [
|
|
18438
|
+
{
|
|
18439
|
+
"abstract": true,
|
|
18440
|
+
"docs": {
|
|
18441
|
+
"stability": "experimental"
|
|
18442
|
+
},
|
|
18443
|
+
"immutable": true,
|
|
18444
|
+
"locationInModule": {
|
|
18445
|
+
"filename": "src/github/workflows-model.ts",
|
|
18446
|
+
"line": 181
|
|
18447
|
+
},
|
|
18448
|
+
"name": "version",
|
|
18449
|
+
"type": {
|
|
18450
|
+
"primitive": "string"
|
|
18451
|
+
}
|
|
18452
|
+
}
|
|
18453
|
+
],
|
|
18454
|
+
"symbolId": "src/github/workflows-model:ToolRequirement"
|
|
18455
|
+
},
|
|
18456
|
+
"projen.github.workflows.Tools": {
|
|
18457
|
+
"assembly": "projen",
|
|
18458
|
+
"datatype": true,
|
|
18459
|
+
"docs": {
|
|
18460
|
+
"stability": "experimental",
|
|
18461
|
+
"summary": "Supported tools."
|
|
18462
|
+
},
|
|
18463
|
+
"fqn": "projen.github.workflows.Tools",
|
|
18464
|
+
"kind": "interface",
|
|
18465
|
+
"locationInModule": {
|
|
18466
|
+
"filename": "src/github/workflows-model.ts",
|
|
18467
|
+
"line": 145
|
|
18468
|
+
},
|
|
18469
|
+
"name": "Tools",
|
|
18470
|
+
"namespace": "github.workflows",
|
|
18471
|
+
"properties": [
|
|
18472
|
+
{
|
|
18473
|
+
"abstract": true,
|
|
18474
|
+
"docs": {
|
|
18475
|
+
"default": "- not installed",
|
|
18476
|
+
"stability": "experimental",
|
|
18477
|
+
"summary": "Setup .NET Core."
|
|
18478
|
+
},
|
|
18479
|
+
"immutable": true,
|
|
18480
|
+
"locationInModule": {
|
|
18481
|
+
"filename": "src/github/workflows-model.ts",
|
|
18482
|
+
"line": 174
|
|
18483
|
+
},
|
|
18484
|
+
"name": "dotnet",
|
|
18485
|
+
"optional": true,
|
|
18486
|
+
"type": {
|
|
18487
|
+
"fqn": "projen.github.workflows.ToolRequirement"
|
|
18488
|
+
}
|
|
18489
|
+
},
|
|
18490
|
+
{
|
|
18491
|
+
"abstract": true,
|
|
18492
|
+
"docs": {
|
|
18493
|
+
"default": "- not installed",
|
|
18494
|
+
"stability": "experimental",
|
|
18495
|
+
"summary": "Setup golang."
|
|
18496
|
+
},
|
|
18497
|
+
"immutable": true,
|
|
18498
|
+
"locationInModule": {
|
|
18499
|
+
"filename": "src/github/workflows-model.ts",
|
|
18500
|
+
"line": 162
|
|
18501
|
+
},
|
|
18502
|
+
"name": "go",
|
|
18503
|
+
"optional": true,
|
|
18504
|
+
"type": {
|
|
18505
|
+
"fqn": "projen.github.workflows.ToolRequirement"
|
|
18506
|
+
}
|
|
18507
|
+
},
|
|
18508
|
+
{
|
|
18509
|
+
"abstract": true,
|
|
18510
|
+
"docs": {
|
|
18511
|
+
"default": "- not installed",
|
|
18512
|
+
"stability": "experimental",
|
|
18513
|
+
"summary": "Setup java (temurin distribution)."
|
|
18514
|
+
},
|
|
18515
|
+
"immutable": true,
|
|
18516
|
+
"locationInModule": {
|
|
18517
|
+
"filename": "src/github/workflows-model.ts",
|
|
18518
|
+
"line": 150
|
|
18519
|
+
},
|
|
18520
|
+
"name": "java",
|
|
18521
|
+
"optional": true,
|
|
18522
|
+
"type": {
|
|
18523
|
+
"fqn": "projen.github.workflows.ToolRequirement"
|
|
18524
|
+
}
|
|
18525
|
+
},
|
|
18526
|
+
{
|
|
18527
|
+
"abstract": true,
|
|
18528
|
+
"docs": {
|
|
18529
|
+
"default": "- not installed",
|
|
18530
|
+
"stability": "experimental",
|
|
18531
|
+
"summary": "Setup node.js."
|
|
18532
|
+
},
|
|
18533
|
+
"immutable": true,
|
|
18534
|
+
"locationInModule": {
|
|
18535
|
+
"filename": "src/github/workflows-model.ts",
|
|
18536
|
+
"line": 168
|
|
18537
|
+
},
|
|
18538
|
+
"name": "node",
|
|
18539
|
+
"optional": true,
|
|
18540
|
+
"type": {
|
|
18541
|
+
"fqn": "projen.github.workflows.ToolRequirement"
|
|
18542
|
+
}
|
|
18543
|
+
},
|
|
18544
|
+
{
|
|
18545
|
+
"abstract": true,
|
|
18546
|
+
"docs": {
|
|
18547
|
+
"default": "- not installed",
|
|
18548
|
+
"stability": "experimental",
|
|
18549
|
+
"summary": "Setup python."
|
|
18550
|
+
},
|
|
18551
|
+
"immutable": true,
|
|
18552
|
+
"locationInModule": {
|
|
18553
|
+
"filename": "src/github/workflows-model.ts",
|
|
18554
|
+
"line": 156
|
|
18555
|
+
},
|
|
18556
|
+
"name": "python",
|
|
18557
|
+
"optional": true,
|
|
18558
|
+
"type": {
|
|
18559
|
+
"fqn": "projen.github.workflows.ToolRequirement"
|
|
18560
|
+
}
|
|
18561
|
+
}
|
|
18562
|
+
],
|
|
18563
|
+
"symbolId": "src/github/workflows-model:Tools"
|
|
18564
|
+
},
|
|
18014
18565
|
"projen.github.workflows.Triggers": {
|
|
18015
18566
|
"assembly": "projen",
|
|
18016
18567
|
"datatype": true,
|
|
@@ -18023,7 +18574,7 @@
|
|
|
18023
18574
|
"kind": "interface",
|
|
18024
18575
|
"locationInModule": {
|
|
18025
18576
|
"filename": "src/github/workflows-model.ts",
|
|
18026
|
-
"line":
|
|
18577
|
+
"line": 446
|
|
18027
18578
|
},
|
|
18028
18579
|
"name": "Triggers",
|
|
18029
18580
|
"namespace": "github.workflows",
|
|
@@ -18037,7 +18588,7 @@
|
|
|
18037
18588
|
"immutable": true,
|
|
18038
18589
|
"locationInModule": {
|
|
18039
18590
|
"filename": "src/github/workflows-model.ts",
|
|
18040
|
-
"line":
|
|
18591
|
+
"line": 488
|
|
18041
18592
|
},
|
|
18042
18593
|
"name": "branchProtectionRule",
|
|
18043
18594
|
"optional": true,
|
|
@@ -18054,7 +18605,7 @@
|
|
|
18054
18605
|
"immutable": true,
|
|
18055
18606
|
"locationInModule": {
|
|
18056
18607
|
"filename": "src/github/workflows-model.ts",
|
|
18057
|
-
"line":
|
|
18608
|
+
"line": 493
|
|
18058
18609
|
},
|
|
18059
18610
|
"name": "checkRun",
|
|
18060
18611
|
"optional": true,
|
|
@@ -18071,7 +18622,7 @@
|
|
|
18071
18622
|
"immutable": true,
|
|
18072
18623
|
"locationInModule": {
|
|
18073
18624
|
"filename": "src/github/workflows-model.ts",
|
|
18074
|
-
"line":
|
|
18625
|
+
"line": 498
|
|
18075
18626
|
},
|
|
18076
18627
|
"name": "checkSuite",
|
|
18077
18628
|
"optional": true,
|
|
@@ -18088,7 +18639,7 @@
|
|
|
18088
18639
|
"immutable": true,
|
|
18089
18640
|
"locationInModule": {
|
|
18090
18641
|
"filename": "src/github/workflows-model.ts",
|
|
18091
|
-
"line":
|
|
18642
|
+
"line": 504
|
|
18092
18643
|
},
|
|
18093
18644
|
"name": "create",
|
|
18094
18645
|
"optional": true,
|
|
@@ -18105,7 +18656,7 @@
|
|
|
18105
18656
|
"immutable": true,
|
|
18106
18657
|
"locationInModule": {
|
|
18107
18658
|
"filename": "src/github/workflows-model.ts",
|
|
18108
|
-
"line":
|
|
18659
|
+
"line": 510
|
|
18109
18660
|
},
|
|
18110
18661
|
"name": "delete",
|
|
18111
18662
|
"optional": true,
|
|
@@ -18123,7 +18674,7 @@
|
|
|
18123
18674
|
"immutable": true,
|
|
18124
18675
|
"locationInModule": {
|
|
18125
18676
|
"filename": "src/github/workflows-model.ts",
|
|
18126
|
-
"line":
|
|
18677
|
+
"line": 517
|
|
18127
18678
|
},
|
|
18128
18679
|
"name": "deployment",
|
|
18129
18680
|
"optional": true,
|
|
@@ -18141,7 +18692,7 @@
|
|
|
18141
18692
|
"immutable": true,
|
|
18142
18693
|
"locationInModule": {
|
|
18143
18694
|
"filename": "src/github/workflows-model.ts",
|
|
18144
|
-
"line":
|
|
18695
|
+
"line": 524
|
|
18145
18696
|
},
|
|
18146
18697
|
"name": "deploymentStatus",
|
|
18147
18698
|
"optional": true,
|
|
@@ -18160,7 +18711,7 @@
|
|
|
18160
18711
|
"immutable": true,
|
|
18161
18712
|
"locationInModule": {
|
|
18162
18713
|
"filename": "src/github/workflows-model.ts",
|
|
18163
|
-
"line":
|
|
18714
|
+
"line": 530
|
|
18164
18715
|
},
|
|
18165
18716
|
"name": "discussion",
|
|
18166
18717
|
"optional": true,
|
|
@@ -18179,7 +18730,7 @@
|
|
|
18179
18730
|
"immutable": true,
|
|
18180
18731
|
"locationInModule": {
|
|
18181
18732
|
"filename": "src/github/workflows-model.ts",
|
|
18182
|
-
"line":
|
|
18733
|
+
"line": 536
|
|
18183
18734
|
},
|
|
18184
18735
|
"name": "discussionComment",
|
|
18185
18736
|
"optional": true,
|
|
@@ -18196,7 +18747,7 @@
|
|
|
18196
18747
|
"immutable": true,
|
|
18197
18748
|
"locationInModule": {
|
|
18198
18749
|
"filename": "src/github/workflows-model.ts",
|
|
18199
|
-
"line":
|
|
18750
|
+
"line": 542
|
|
18200
18751
|
},
|
|
18201
18752
|
"name": "fork",
|
|
18202
18753
|
"optional": true,
|
|
@@ -18213,7 +18764,7 @@
|
|
|
18213
18764
|
"immutable": true,
|
|
18214
18765
|
"locationInModule": {
|
|
18215
18766
|
"filename": "src/github/workflows-model.ts",
|
|
18216
|
-
"line":
|
|
18767
|
+
"line": 548
|
|
18217
18768
|
},
|
|
18218
18769
|
"name": "gollum",
|
|
18219
18770
|
"optional": true,
|
|
@@ -18230,7 +18781,7 @@
|
|
|
18230
18781
|
"immutable": true,
|
|
18231
18782
|
"locationInModule": {
|
|
18232
18783
|
"filename": "src/github/workflows-model.ts",
|
|
18233
|
-
"line":
|
|
18784
|
+
"line": 553
|
|
18234
18785
|
},
|
|
18235
18786
|
"name": "issueComment",
|
|
18236
18787
|
"optional": true,
|
|
@@ -18247,7 +18798,7 @@
|
|
|
18247
18798
|
"immutable": true,
|
|
18248
18799
|
"locationInModule": {
|
|
18249
18800
|
"filename": "src/github/workflows-model.ts",
|
|
18250
|
-
"line":
|
|
18801
|
+
"line": 558
|
|
18251
18802
|
},
|
|
18252
18803
|
"name": "issues",
|
|
18253
18804
|
"optional": true,
|
|
@@ -18264,7 +18815,7 @@
|
|
|
18264
18815
|
"immutable": true,
|
|
18265
18816
|
"locationInModule": {
|
|
18266
18817
|
"filename": "src/github/workflows-model.ts",
|
|
18267
|
-
"line":
|
|
18818
|
+
"line": 563
|
|
18268
18819
|
},
|
|
18269
18820
|
"name": "label",
|
|
18270
18821
|
"optional": true,
|
|
@@ -18281,7 +18832,7 @@
|
|
|
18281
18832
|
"immutable": true,
|
|
18282
18833
|
"locationInModule": {
|
|
18283
18834
|
"filename": "src/github/workflows-model.ts",
|
|
18284
|
-
"line":
|
|
18835
|
+
"line": 568
|
|
18285
18836
|
},
|
|
18286
18837
|
"name": "milestone",
|
|
18287
18838
|
"optional": true,
|
|
@@ -18298,7 +18849,7 @@
|
|
|
18298
18849
|
"immutable": true,
|
|
18299
18850
|
"locationInModule": {
|
|
18300
18851
|
"filename": "src/github/workflows-model.ts",
|
|
18301
|
-
"line":
|
|
18852
|
+
"line": 574
|
|
18302
18853
|
},
|
|
18303
18854
|
"name": "pageBuild",
|
|
18304
18855
|
"optional": true,
|
|
@@ -18315,7 +18866,7 @@
|
|
|
18315
18866
|
"immutable": true,
|
|
18316
18867
|
"locationInModule": {
|
|
18317
18868
|
"filename": "src/github/workflows-model.ts",
|
|
18318
|
-
"line":
|
|
18869
|
+
"line": 579
|
|
18319
18870
|
},
|
|
18320
18871
|
"name": "project",
|
|
18321
18872
|
"optional": true,
|
|
@@ -18332,7 +18883,7 @@
|
|
|
18332
18883
|
"immutable": true,
|
|
18333
18884
|
"locationInModule": {
|
|
18334
18885
|
"filename": "src/github/workflows-model.ts",
|
|
18335
|
-
"line":
|
|
18886
|
+
"line": 584
|
|
18336
18887
|
},
|
|
18337
18888
|
"name": "projectCard",
|
|
18338
18889
|
"optional": true,
|
|
@@ -18349,7 +18900,7 @@
|
|
|
18349
18900
|
"immutable": true,
|
|
18350
18901
|
"locationInModule": {
|
|
18351
18902
|
"filename": "src/github/workflows-model.ts",
|
|
18352
|
-
"line":
|
|
18903
|
+
"line": 589
|
|
18353
18904
|
},
|
|
18354
18905
|
"name": "projectColumn",
|
|
18355
18906
|
"optional": true,
|
|
@@ -18366,7 +18917,7 @@
|
|
|
18366
18917
|
"immutable": true,
|
|
18367
18918
|
"locationInModule": {
|
|
18368
18919
|
"filename": "src/github/workflows-model.ts",
|
|
18369
|
-
"line":
|
|
18920
|
+
"line": 595
|
|
18370
18921
|
},
|
|
18371
18922
|
"name": "public",
|
|
18372
18923
|
"optional": true,
|
|
@@ -18383,7 +18934,7 @@
|
|
|
18383
18934
|
"immutable": true,
|
|
18384
18935
|
"locationInModule": {
|
|
18385
18936
|
"filename": "src/github/workflows-model.ts",
|
|
18386
|
-
"line":
|
|
18937
|
+
"line": 600
|
|
18387
18938
|
},
|
|
18388
18939
|
"name": "pullRequest",
|
|
18389
18940
|
"optional": true,
|
|
@@ -18400,7 +18951,7 @@
|
|
|
18400
18951
|
"immutable": true,
|
|
18401
18952
|
"locationInModule": {
|
|
18402
18953
|
"filename": "src/github/workflows-model.ts",
|
|
18403
|
-
"line":
|
|
18954
|
+
"line": 605
|
|
18404
18955
|
},
|
|
18405
18956
|
"name": "pullRequestReview",
|
|
18406
18957
|
"optional": true,
|
|
@@ -18417,7 +18968,7 @@
|
|
|
18417
18968
|
"immutable": true,
|
|
18418
18969
|
"locationInModule": {
|
|
18419
18970
|
"filename": "src/github/workflows-model.ts",
|
|
18420
|
-
"line":
|
|
18971
|
+
"line": 611
|
|
18421
18972
|
},
|
|
18422
18973
|
"name": "pullRequestReviewComment",
|
|
18423
18974
|
"optional": true,
|
|
@@ -18436,7 +18987,7 @@
|
|
|
18436
18987
|
"immutable": true,
|
|
18437
18988
|
"locationInModule": {
|
|
18438
18989
|
"filename": "src/github/workflows-model.ts",
|
|
18439
|
-
"line":
|
|
18990
|
+
"line": 632
|
|
18440
18991
|
},
|
|
18441
18992
|
"name": "pullRequestTarget",
|
|
18442
18993
|
"optional": true,
|
|
@@ -18453,7 +19004,7 @@
|
|
|
18453
19004
|
"immutable": true,
|
|
18454
19005
|
"locationInModule": {
|
|
18455
19006
|
"filename": "src/github/workflows-model.ts",
|
|
18456
|
-
"line":
|
|
19007
|
+
"line": 638
|
|
18457
19008
|
},
|
|
18458
19009
|
"name": "push",
|
|
18459
19010
|
"optional": true,
|
|
@@ -18470,7 +19021,7 @@
|
|
|
18470
19021
|
"immutable": true,
|
|
18471
19022
|
"locationInModule": {
|
|
18472
19023
|
"filename": "src/github/workflows-model.ts",
|
|
18473
|
-
"line":
|
|
19024
|
+
"line": 643
|
|
18474
19025
|
},
|
|
18475
19026
|
"name": "registryPackage",
|
|
18476
19027
|
"optional": true,
|
|
@@ -18487,7 +19038,7 @@
|
|
|
18487
19038
|
"immutable": true,
|
|
18488
19039
|
"locationInModule": {
|
|
18489
19040
|
"filename": "src/github/workflows-model.ts",
|
|
18490
|
-
"line":
|
|
19041
|
+
"line": 648
|
|
18491
19042
|
},
|
|
18492
19043
|
"name": "release",
|
|
18493
19044
|
"optional": true,
|
|
@@ -18504,7 +19055,7 @@
|
|
|
18504
19055
|
"immutable": true,
|
|
18505
19056
|
"locationInModule": {
|
|
18506
19057
|
"filename": "src/github/workflows-model.ts",
|
|
18507
|
-
"line":
|
|
19058
|
+
"line": 473
|
|
18508
19059
|
},
|
|
18509
19060
|
"name": "repositoryDispatch",
|
|
18510
19061
|
"optional": true,
|
|
@@ -18523,7 +19074,7 @@
|
|
|
18523
19074
|
"immutable": true,
|
|
18524
19075
|
"locationInModule": {
|
|
18525
19076
|
"filename": "src/github/workflows-model.ts",
|
|
18526
|
-
"line":
|
|
19077
|
+
"line": 456
|
|
18527
19078
|
},
|
|
18528
19079
|
"name": "schedule",
|
|
18529
19080
|
"optional": true,
|
|
@@ -18545,7 +19096,7 @@
|
|
|
18545
19096
|
"immutable": true,
|
|
18546
19097
|
"locationInModule": {
|
|
18547
19098
|
"filename": "src/github/workflows-model.ts",
|
|
18548
|
-
"line":
|
|
19099
|
+
"line": 654
|
|
18549
19100
|
},
|
|
18550
19101
|
"name": "status",
|
|
18551
19102
|
"optional": true,
|
|
@@ -18562,7 +19113,7 @@
|
|
|
18562
19113
|
"immutable": true,
|
|
18563
19114
|
"locationInModule": {
|
|
18564
19115
|
"filename": "src/github/workflows-model.ts",
|
|
18565
|
-
"line":
|
|
19116
|
+
"line": 659
|
|
18566
19117
|
},
|
|
18567
19118
|
"name": "watch",
|
|
18568
19119
|
"optional": true,
|
|
@@ -18580,7 +19131,7 @@
|
|
|
18580
19131
|
"immutable": true,
|
|
18581
19132
|
"locationInModule": {
|
|
18582
19133
|
"filename": "src/github/workflows-model.ts",
|
|
18583
|
-
"line":
|
|
19134
|
+
"line": 481
|
|
18584
19135
|
},
|
|
18585
19136
|
"name": "workflowCall",
|
|
18586
19137
|
"optional": true,
|
|
@@ -18598,7 +19149,7 @@
|
|
|
18598
19149
|
"immutable": true,
|
|
18599
19150
|
"locationInModule": {
|
|
18600
19151
|
"filename": "src/github/workflows-model.ts",
|
|
18601
|
-
"line":
|
|
19152
|
+
"line": 466
|
|
18602
19153
|
},
|
|
18603
19154
|
"name": "workflowDispatch",
|
|
18604
19155
|
"optional": true,
|
|
@@ -18616,7 +19167,7 @@
|
|
|
18616
19167
|
"immutable": true,
|
|
18617
19168
|
"locationInModule": {
|
|
18618
19169
|
"filename": "src/github/workflows-model.ts",
|
|
18619
|
-
"line":
|
|
19170
|
+
"line": 667
|
|
18620
19171
|
},
|
|
18621
19172
|
"name": "workflowRun",
|
|
18622
19173
|
"optional": true,
|
|
@@ -18638,7 +19189,7 @@
|
|
|
18638
19189
|
"kind": "interface",
|
|
18639
19190
|
"locationInModule": {
|
|
18640
19191
|
"filename": "src/github/workflows-model.ts",
|
|
18641
|
-
"line":
|
|
19192
|
+
"line": 950
|
|
18642
19193
|
},
|
|
18643
19194
|
"name": "WatchOptions",
|
|
18644
19195
|
"namespace": "github.workflows",
|
|
@@ -18655,7 +19206,7 @@
|
|
|
18655
19206
|
"immutable": true,
|
|
18656
19207
|
"locationInModule": {
|
|
18657
19208
|
"filename": "src/github/workflows-model.ts",
|
|
18658
|
-
"line":
|
|
19209
|
+
"line": 956
|
|
18659
19210
|
},
|
|
18660
19211
|
"name": "types",
|
|
18661
19212
|
"optional": true,
|
|
@@ -18682,7 +19233,7 @@
|
|
|
18682
19233
|
"kind": "interface",
|
|
18683
19234
|
"locationInModule": {
|
|
18684
19235
|
"filename": "src/github/workflows-model.ts",
|
|
18685
|
-
"line":
|
|
19236
|
+
"line": 980
|
|
18686
19237
|
},
|
|
18687
19238
|
"name": "WorkflowCallOptions",
|
|
18688
19239
|
"namespace": "github.workflows",
|
|
@@ -18699,7 +19250,7 @@
|
|
|
18699
19250
|
"kind": "interface",
|
|
18700
19251
|
"locationInModule": {
|
|
18701
19252
|
"filename": "src/github/workflows-model.ts",
|
|
18702
|
-
"line":
|
|
19253
|
+
"line": 975
|
|
18703
19254
|
},
|
|
18704
19255
|
"name": "WorkflowDispatchOptions",
|
|
18705
19256
|
"namespace": "github.workflows",
|
|
@@ -18716,7 +19267,7 @@
|
|
|
18716
19267
|
"kind": "interface",
|
|
18717
19268
|
"locationInModule": {
|
|
18718
19269
|
"filename": "src/github/workflows-model.ts",
|
|
18719
|
-
"line":
|
|
19270
|
+
"line": 962
|
|
18720
19271
|
},
|
|
18721
19272
|
"name": "WorkflowRunOptions",
|
|
18722
19273
|
"namespace": "github.workflows",
|
|
@@ -18733,7 +19284,7 @@
|
|
|
18733
19284
|
"immutable": true,
|
|
18734
19285
|
"locationInModule": {
|
|
18735
19286
|
"filename": "src/github/workflows-model.ts",
|
|
18736
|
-
"line":
|
|
19287
|
+
"line": 968
|
|
18737
19288
|
},
|
|
18738
19289
|
"name": "types",
|
|
18739
19290
|
"optional": true,
|
|
@@ -20430,7 +20981,7 @@
|
|
|
20430
20981
|
"kind": "enum",
|
|
20431
20982
|
"locationInModule": {
|
|
20432
20983
|
"filename": "src/javascript/node-project.ts",
|
|
20433
|
-
"line":
|
|
20984
|
+
"line": 300
|
|
20434
20985
|
},
|
|
20435
20986
|
"members": [
|
|
20436
20987
|
{
|
|
@@ -24741,7 +25292,7 @@
|
|
|
24741
25292
|
},
|
|
24742
25293
|
"locationInModule": {
|
|
24743
25294
|
"filename": "src/javascript/node-project.ts",
|
|
24744
|
-
"line":
|
|
25295
|
+
"line": 425
|
|
24745
25296
|
},
|
|
24746
25297
|
"parameters": [
|
|
24747
25298
|
{
|
|
@@ -24755,7 +25306,7 @@
|
|
|
24755
25306
|
"kind": "class",
|
|
24756
25307
|
"locationInModule": {
|
|
24757
25308
|
"filename": "src/javascript/node-project.ts",
|
|
24758
|
-
"line":
|
|
25309
|
+
"line": 317
|
|
24759
25310
|
},
|
|
24760
25311
|
"methods": [
|
|
24761
25312
|
{
|
|
@@ -24764,7 +25315,7 @@
|
|
|
24764
25315
|
},
|
|
24765
25316
|
"locationInModule": {
|
|
24766
25317
|
"filename": "src/javascript/node-project.ts",
|
|
24767
|
-
"line":
|
|
25318
|
+
"line": 675
|
|
24768
25319
|
},
|
|
24769
25320
|
"name": "addBins",
|
|
24770
25321
|
"parameters": [
|
|
@@ -24789,7 +25340,7 @@
|
|
|
24789
25340
|
},
|
|
24790
25341
|
"locationInModule": {
|
|
24791
25342
|
"filename": "src/javascript/node-project.ts",
|
|
24792
|
-
"line":
|
|
25343
|
+
"line": 828
|
|
24793
25344
|
},
|
|
24794
25345
|
"name": "addBundledDeps",
|
|
24795
25346
|
"parameters": [
|
|
@@ -24815,7 +25366,7 @@
|
|
|
24815
25366
|
},
|
|
24816
25367
|
"locationInModule": {
|
|
24817
25368
|
"filename": "src/javascript/node-project.ts",
|
|
24818
|
-
"line":
|
|
25369
|
+
"line": 709
|
|
24819
25370
|
},
|
|
24820
25371
|
"name": "addCompileCommand",
|
|
24821
25372
|
"parameters": [
|
|
@@ -24836,7 +25387,7 @@
|
|
|
24836
25387
|
},
|
|
24837
25388
|
"locationInModule": {
|
|
24838
25389
|
"filename": "src/javascript/node-project.ts",
|
|
24839
|
-
"line":
|
|
25390
|
+
"line": 782
|
|
24840
25391
|
},
|
|
24841
25392
|
"name": "addDeps",
|
|
24842
25393
|
"parameters": [
|
|
@@ -24861,7 +25412,7 @@
|
|
|
24861
25412
|
},
|
|
24862
25413
|
"locationInModule": {
|
|
24863
25414
|
"filename": "src/javascript/node-project.ts",
|
|
24864
|
-
"line":
|
|
25415
|
+
"line": 795
|
|
24865
25416
|
},
|
|
24866
25417
|
"name": "addDevDeps",
|
|
24867
25418
|
"parameters": [
|
|
@@ -24886,7 +25437,7 @@
|
|
|
24886
25437
|
},
|
|
24887
25438
|
"locationInModule": {
|
|
24888
25439
|
"filename": "src/javascript/node-project.ts",
|
|
24889
|
-
"line":
|
|
25440
|
+
"line": 729
|
|
24890
25441
|
},
|
|
24891
25442
|
"name": "addFields",
|
|
24892
25443
|
"parameters": [
|
|
@@ -24913,7 +25464,7 @@
|
|
|
24913
25464
|
},
|
|
24914
25465
|
"locationInModule": {
|
|
24915
25466
|
"filename": "src/javascript/node-project.ts",
|
|
24916
|
-
"line":
|
|
25467
|
+
"line": 739
|
|
24917
25468
|
},
|
|
24918
25469
|
"name": "addKeywords",
|
|
24919
25470
|
"parameters": [
|
|
@@ -24938,7 +25489,7 @@
|
|
|
24938
25489
|
},
|
|
24939
25490
|
"locationInModule": {
|
|
24940
25491
|
"filename": "src/javascript/node-project.ts",
|
|
24941
|
-
"line":
|
|
25492
|
+
"line": 832
|
|
24942
25493
|
},
|
|
24943
25494
|
"name": "addPackageIgnore",
|
|
24944
25495
|
"overrides": "projen.Project",
|
|
@@ -24959,7 +25510,7 @@
|
|
|
24959
25510
|
},
|
|
24960
25511
|
"locationInModule": {
|
|
24961
25512
|
"filename": "src/javascript/node-project.ts",
|
|
24962
|
-
"line":
|
|
25513
|
+
"line": 812
|
|
24963
25514
|
},
|
|
24964
25515
|
"name": "addPeerDeps",
|
|
24965
25516
|
"parameters": [
|
|
@@ -24985,7 +25536,7 @@
|
|
|
24985
25536
|
},
|
|
24986
25537
|
"locationInModule": {
|
|
24987
25538
|
"filename": "src/javascript/node-project.ts",
|
|
24988
|
-
"line":
|
|
25539
|
+
"line": 719
|
|
24989
25540
|
},
|
|
24990
25541
|
"name": "addTestCommand",
|
|
24991
25542
|
"parameters": [
|
|
@@ -25006,7 +25557,7 @@
|
|
|
25006
25557
|
},
|
|
25007
25558
|
"locationInModule": {
|
|
25008
25559
|
"filename": "src/javascript/node-project.ts",
|
|
25009
|
-
"line":
|
|
25560
|
+
"line": 701
|
|
25010
25561
|
},
|
|
25011
25562
|
"name": "hasScript",
|
|
25012
25563
|
"parameters": [
|
|
@@ -25033,7 +25584,7 @@
|
|
|
25033
25584
|
},
|
|
25034
25585
|
"locationInModule": {
|
|
25035
25586
|
"filename": "src/javascript/node-project.ts",
|
|
25036
|
-
"line":
|
|
25587
|
+
"line": 693
|
|
25037
25588
|
},
|
|
25038
25589
|
"name": "removeScript",
|
|
25039
25590
|
"parameters": [
|
|
@@ -25056,7 +25607,7 @@
|
|
|
25056
25607
|
},
|
|
25057
25608
|
"locationInModule": {
|
|
25058
25609
|
"filename": "src/javascript/node-project.ts",
|
|
25059
|
-
"line":
|
|
25610
|
+
"line": 906
|
|
25060
25611
|
},
|
|
25061
25612
|
"name": "runTaskCommand",
|
|
25062
25613
|
"overrides": "projen.Project",
|
|
@@ -25084,7 +25635,7 @@
|
|
|
25084
25635
|
},
|
|
25085
25636
|
"locationInModule": {
|
|
25086
25637
|
"filename": "src/javascript/node-project.ts",
|
|
25087
|
-
"line":
|
|
25638
|
+
"line": 685
|
|
25088
25639
|
},
|
|
25089
25640
|
"name": "setScript",
|
|
25090
25641
|
"parameters": [
|
|
@@ -25120,7 +25671,7 @@
|
|
|
25120
25671
|
"immutable": true,
|
|
25121
25672
|
"locationInModule": {
|
|
25122
25673
|
"filename": "src/javascript/node-project.ts",
|
|
25123
|
-
"line":
|
|
25674
|
+
"line": 331
|
|
25124
25675
|
},
|
|
25125
25676
|
"name": "allowLibraryDependencies",
|
|
25126
25677
|
"type": {
|
|
@@ -25135,13 +25686,44 @@
|
|
|
25135
25686
|
"immutable": true,
|
|
25136
25687
|
"locationInModule": {
|
|
25137
25688
|
"filename": "src/javascript/node-project.ts",
|
|
25138
|
-
"line":
|
|
25689
|
+
"line": 377
|
|
25139
25690
|
},
|
|
25140
25691
|
"name": "antitamper",
|
|
25141
25692
|
"type": {
|
|
25142
25693
|
"primitive": "boolean"
|
|
25143
25694
|
}
|
|
25144
25695
|
},
|
|
25696
|
+
{
|
|
25697
|
+
"docs": {
|
|
25698
|
+
"remarks": "An npm tarball will be created under the `js`\nsubdirectory. For example, if this is set to `dist` (the default), the npm\ntarball will be placed under `dist/js/boom-boom-1.2.3.tg`.",
|
|
25699
|
+
"stability": "experimental",
|
|
25700
|
+
"summary": "The build output directory."
|
|
25701
|
+
},
|
|
25702
|
+
"immutable": true,
|
|
25703
|
+
"locationInModule": {
|
|
25704
|
+
"filename": "src/javascript/node-project.ts",
|
|
25705
|
+
"line": 410
|
|
25706
|
+
},
|
|
25707
|
+
"name": "artifactsDirectory",
|
|
25708
|
+
"type": {
|
|
25709
|
+
"primitive": "string"
|
|
25710
|
+
}
|
|
25711
|
+
},
|
|
25712
|
+
{
|
|
25713
|
+
"docs": {
|
|
25714
|
+
"stability": "experimental",
|
|
25715
|
+
"summary": "The location of the npm tarball after build (`${artifactsDirectory}/js`)."
|
|
25716
|
+
},
|
|
25717
|
+
"immutable": true,
|
|
25718
|
+
"locationInModule": {
|
|
25719
|
+
"filename": "src/javascript/node-project.ts",
|
|
25720
|
+
"line": 415
|
|
25721
|
+
},
|
|
25722
|
+
"name": "artifactsJavascriptDirectory",
|
|
25723
|
+
"type": {
|
|
25724
|
+
"primitive": "string"
|
|
25725
|
+
}
|
|
25726
|
+
},
|
|
25145
25727
|
{
|
|
25146
25728
|
"docs": {
|
|
25147
25729
|
"stability": "experimental"
|
|
@@ -25149,7 +25731,7 @@
|
|
|
25149
25731
|
"immutable": true,
|
|
25150
25732
|
"locationInModule": {
|
|
25151
25733
|
"filename": "src/javascript/node-project.ts",
|
|
25152
|
-
"line":
|
|
25734
|
+
"line": 403
|
|
25153
25735
|
},
|
|
25154
25736
|
"name": "bundler",
|
|
25155
25737
|
"type": {
|
|
@@ -25164,7 +25746,7 @@
|
|
|
25164
25746
|
"immutable": true,
|
|
25165
25747
|
"locationInModule": {
|
|
25166
25748
|
"filename": "src/javascript/node-project.ts",
|
|
25167
|
-
"line":
|
|
25749
|
+
"line": 336
|
|
25168
25750
|
},
|
|
25169
25751
|
"name": "entrypoint",
|
|
25170
25752
|
"type": {
|
|
@@ -25178,7 +25760,7 @@
|
|
|
25178
25760
|
"immutable": true,
|
|
25179
25761
|
"locationInModule": {
|
|
25180
25762
|
"filename": "src/javascript/node-project.ts",
|
|
25181
|
-
"line":
|
|
25763
|
+
"line": 743
|
|
25182
25764
|
},
|
|
25183
25765
|
"name": "installWorkflowSteps",
|
|
25184
25766
|
"type": {
|
|
@@ -25198,7 +25780,7 @@
|
|
|
25198
25780
|
"immutable": true,
|
|
25199
25781
|
"locationInModule": {
|
|
25200
25782
|
"filename": "src/javascript/node-project.ts",
|
|
25201
|
-
"line":
|
|
25783
|
+
"line": 399
|
|
25202
25784
|
},
|
|
25203
25785
|
"name": "manifest",
|
|
25204
25786
|
"type": {
|
|
@@ -25213,7 +25795,7 @@
|
|
|
25213
25795
|
"immutable": true,
|
|
25214
25796
|
"locationInModule": {
|
|
25215
25797
|
"filename": "src/javascript/node-project.ts",
|
|
25216
|
-
"line":
|
|
25798
|
+
"line": 321
|
|
25217
25799
|
},
|
|
25218
25800
|
"name": "package",
|
|
25219
25801
|
"type": {
|
|
@@ -25229,7 +25811,7 @@
|
|
|
25229
25811
|
"immutable": true,
|
|
25230
25812
|
"locationInModule": {
|
|
25231
25813
|
"filename": "src/javascript/node-project.ts",
|
|
25232
|
-
"line":
|
|
25814
|
+
"line": 384
|
|
25233
25815
|
},
|
|
25234
25816
|
"name": "packageManager",
|
|
25235
25817
|
"type": {
|
|
@@ -25244,7 +25826,7 @@
|
|
|
25244
25826
|
"immutable": true,
|
|
25245
25827
|
"locationInModule": {
|
|
25246
25828
|
"filename": "src/javascript/node-project.ts",
|
|
25247
|
-
"line":
|
|
25829
|
+
"line": 389
|
|
25248
25830
|
},
|
|
25249
25831
|
"name": "runScriptCommand",
|
|
25250
25832
|
"type": {
|
|
@@ -25259,7 +25841,7 @@
|
|
|
25259
25841
|
"immutable": true,
|
|
25260
25842
|
"locationInModule": {
|
|
25261
25843
|
"filename": "src/javascript/node-project.ts",
|
|
25262
|
-
"line":
|
|
25844
|
+
"line": 341
|
|
25263
25845
|
},
|
|
25264
25846
|
"name": "autoMerge",
|
|
25265
25847
|
"optional": true,
|
|
@@ -25276,22 +25858,23 @@
|
|
|
25276
25858
|
"immutable": true,
|
|
25277
25859
|
"locationInModule": {
|
|
25278
25860
|
"filename": "src/javascript/node-project.ts",
|
|
25279
|
-
"line":
|
|
25861
|
+
"line": 347
|
|
25280
25862
|
},
|
|
25281
25863
|
"name": "buildWorkflow",
|
|
25282
25864
|
"optional": true,
|
|
25283
25865
|
"type": {
|
|
25284
|
-
"fqn": "projen.
|
|
25866
|
+
"fqn": "projen.build.BuildWorkflow"
|
|
25285
25867
|
}
|
|
25286
25868
|
},
|
|
25287
25869
|
{
|
|
25288
25870
|
"docs": {
|
|
25289
|
-
"stability": "experimental"
|
|
25871
|
+
"stability": "experimental",
|
|
25872
|
+
"summary": "The job ID of the build workflow."
|
|
25290
25873
|
},
|
|
25291
25874
|
"immutable": true,
|
|
25292
25875
|
"locationInModule": {
|
|
25293
25876
|
"filename": "src/javascript/node-project.ts",
|
|
25294
|
-
"line":
|
|
25877
|
+
"line": 913
|
|
25295
25878
|
},
|
|
25296
25879
|
"name": "buildWorkflowJobId",
|
|
25297
25880
|
"optional": true,
|
|
@@ -25307,7 +25890,7 @@
|
|
|
25307
25890
|
"immutable": true,
|
|
25308
25891
|
"locationInModule": {
|
|
25309
25892
|
"filename": "src/javascript/node-project.ts",
|
|
25310
|
-
"line":
|
|
25893
|
+
"line": 394
|
|
25311
25894
|
},
|
|
25312
25895
|
"name": "jest",
|
|
25313
25896
|
"optional": true,
|
|
@@ -25323,7 +25906,7 @@
|
|
|
25323
25906
|
"immutable": true,
|
|
25324
25907
|
"locationInModule": {
|
|
25325
25908
|
"filename": "src/javascript/node-project.ts",
|
|
25326
|
-
"line":
|
|
25909
|
+
"line": 370
|
|
25327
25910
|
},
|
|
25328
25911
|
"name": "maxNodeVersion",
|
|
25329
25912
|
"optional": true,
|
|
@@ -25339,7 +25922,7 @@
|
|
|
25339
25922
|
"immutable": true,
|
|
25340
25923
|
"locationInModule": {
|
|
25341
25924
|
"filename": "src/javascript/node-project.ts",
|
|
25342
|
-
"line":
|
|
25925
|
+
"line": 365
|
|
25343
25926
|
},
|
|
25344
25927
|
"name": "minNodeVersion",
|
|
25345
25928
|
"optional": true,
|
|
@@ -25355,7 +25938,7 @@
|
|
|
25355
25938
|
"immutable": true,
|
|
25356
25939
|
"locationInModule": {
|
|
25357
25940
|
"filename": "src/javascript/node-project.ts",
|
|
25358
|
-
"line":
|
|
25941
|
+
"line": 326
|
|
25359
25942
|
},
|
|
25360
25943
|
"name": "npmignore",
|
|
25361
25944
|
"optional": true,
|
|
@@ -25373,7 +25956,7 @@
|
|
|
25373
25956
|
"immutable": true,
|
|
25374
25957
|
"locationInModule": {
|
|
25375
25958
|
"filename": "src/javascript/node-project.ts",
|
|
25376
|
-
"line":
|
|
25959
|
+
"line": 355
|
|
25377
25960
|
},
|
|
25378
25961
|
"name": "publisher",
|
|
25379
25962
|
"optional": true,
|
|
@@ -25389,13 +25972,29 @@
|
|
|
25389
25972
|
"immutable": true,
|
|
25390
25973
|
"locationInModule": {
|
|
25391
25974
|
"filename": "src/javascript/node-project.ts",
|
|
25392
|
-
"line":
|
|
25975
|
+
"line": 360
|
|
25393
25976
|
},
|
|
25394
25977
|
"name": "release",
|
|
25395
25978
|
"optional": true,
|
|
25396
25979
|
"type": {
|
|
25397
25980
|
"fqn": "projen.release.Release"
|
|
25398
25981
|
}
|
|
25982
|
+
},
|
|
25983
|
+
{
|
|
25984
|
+
"docs": {
|
|
25985
|
+
"stability": "experimental",
|
|
25986
|
+
"summary": "The upgrade workflow."
|
|
25987
|
+
},
|
|
25988
|
+
"immutable": true,
|
|
25989
|
+
"locationInModule": {
|
|
25990
|
+
"filename": "src/javascript/node-project.ts",
|
|
25991
|
+
"line": 420
|
|
25992
|
+
},
|
|
25993
|
+
"name": "upgradeWorkflow",
|
|
25994
|
+
"optional": true,
|
|
25995
|
+
"type": {
|
|
25996
|
+
"fqn": "projen.javascript.UpgradeDependencies"
|
|
25997
|
+
}
|
|
25399
25998
|
}
|
|
25400
25999
|
],
|
|
25401
26000
|
"symbolId": "src/javascript/node-project:NodeProject"
|
|
@@ -25415,7 +26014,7 @@
|
|
|
25415
26014
|
"kind": "interface",
|
|
25416
26015
|
"locationInModule": {
|
|
25417
26016
|
"filename": "src/javascript/node-project.ts",
|
|
25418
|
-
"line":
|
|
26017
|
+
"line": 21
|
|
25419
26018
|
},
|
|
25420
26019
|
"name": "NodeProjectOptions",
|
|
25421
26020
|
"namespace": "javascript",
|
|
@@ -25430,13 +26029,31 @@
|
|
|
25430
26029
|
"immutable": true,
|
|
25431
26030
|
"locationInModule": {
|
|
25432
26031
|
"filename": "src/javascript/node-project.ts",
|
|
25433
|
-
"line":
|
|
26032
|
+
"line": 104
|
|
25434
26033
|
},
|
|
25435
26034
|
"name": "defaultReleaseBranch",
|
|
25436
26035
|
"type": {
|
|
25437
26036
|
"primitive": "string"
|
|
25438
26037
|
}
|
|
25439
26038
|
},
|
|
26039
|
+
{
|
|
26040
|
+
"abstract": true,
|
|
26041
|
+
"docs": {
|
|
26042
|
+
"default": "\"dist\"",
|
|
26043
|
+
"stability": "experimental",
|
|
26044
|
+
"summary": "A directory which will contain build artifacts."
|
|
26045
|
+
},
|
|
26046
|
+
"immutable": true,
|
|
26047
|
+
"locationInModule": {
|
|
26048
|
+
"filename": "src/javascript/node-project.ts",
|
|
26049
|
+
"line": 286
|
|
26050
|
+
},
|
|
26051
|
+
"name": "artifactsDirectory",
|
|
26052
|
+
"optional": true,
|
|
26053
|
+
"type": {
|
|
26054
|
+
"primitive": "string"
|
|
26055
|
+
}
|
|
26056
|
+
},
|
|
25440
26057
|
{
|
|
25441
26058
|
"abstract": true,
|
|
25442
26059
|
"docs": {
|
|
@@ -25448,7 +26065,7 @@
|
|
|
25448
26065
|
"immutable": true,
|
|
25449
26066
|
"locationInModule": {
|
|
25450
26067
|
"filename": "src/javascript/node-project.ts",
|
|
25451
|
-
"line":
|
|
26068
|
+
"line": 198
|
|
25452
26069
|
},
|
|
25453
26070
|
"name": "autoApproveProjenUpgrades",
|
|
25454
26071
|
"optional": true,
|
|
@@ -25467,7 +26084,7 @@
|
|
|
25467
26084
|
"immutable": true,
|
|
25468
26085
|
"locationInModule": {
|
|
25469
26086
|
"filename": "src/javascript/node-project.ts",
|
|
25470
|
-
"line":
|
|
26087
|
+
"line": 208
|
|
25471
26088
|
},
|
|
25472
26089
|
"name": "autoApproveUpgrades",
|
|
25473
26090
|
"optional": true,
|
|
@@ -25485,7 +26102,7 @@
|
|
|
25485
26102
|
"immutable": true,
|
|
25486
26103
|
"locationInModule": {
|
|
25487
26104
|
"filename": "src/javascript/node-project.ts",
|
|
25488
|
-
"line":
|
|
26105
|
+
"line": 55
|
|
25489
26106
|
},
|
|
25490
26107
|
"name": "buildWorkflow",
|
|
25491
26108
|
"optional": true,
|
|
@@ -25502,7 +26119,7 @@
|
|
|
25502
26119
|
"immutable": true,
|
|
25503
26120
|
"locationInModule": {
|
|
25504
26121
|
"filename": "src/javascript/node-project.ts",
|
|
25505
|
-
"line":
|
|
26122
|
+
"line": 279
|
|
25506
26123
|
},
|
|
25507
26124
|
"name": "bundlerOptions",
|
|
25508
26125
|
"optional": true,
|
|
@@ -25520,7 +26137,7 @@
|
|
|
25520
26137
|
"immutable": true,
|
|
25521
26138
|
"locationInModule": {
|
|
25522
26139
|
"filename": "src/javascript/node-project.ts",
|
|
25523
|
-
"line":
|
|
26140
|
+
"line": 74
|
|
25524
26141
|
},
|
|
25525
26142
|
"name": "codeCov",
|
|
25526
26143
|
"optional": true,
|
|
@@ -25538,7 +26155,7 @@
|
|
|
25538
26155
|
"immutable": true,
|
|
25539
26156
|
"locationInModule": {
|
|
25540
26157
|
"filename": "src/javascript/node-project.ts",
|
|
25541
|
-
"line":
|
|
26158
|
+
"line": 81
|
|
25542
26159
|
},
|
|
25543
26160
|
"name": "codeCovTokenSecret",
|
|
25544
26161
|
"optional": true,
|
|
@@ -25556,7 +26173,7 @@
|
|
|
25556
26173
|
"immutable": true,
|
|
25557
26174
|
"locationInModule": {
|
|
25558
26175
|
"filename": "src/javascript/node-project.ts",
|
|
25559
|
-
"line":
|
|
26176
|
+
"line": 27
|
|
25560
26177
|
},
|
|
25561
26178
|
"name": "copyrightOwner",
|
|
25562
26179
|
"optional": true,
|
|
@@ -25574,7 +26191,7 @@
|
|
|
25574
26191
|
"immutable": true,
|
|
25575
26192
|
"locationInModule": {
|
|
25576
26193
|
"filename": "src/javascript/node-project.ts",
|
|
25577
|
-
"line":
|
|
26194
|
+
"line": 34
|
|
25578
26195
|
},
|
|
25579
26196
|
"name": "copyrightPeriod",
|
|
25580
26197
|
"optional": true,
|
|
@@ -25593,7 +26210,7 @@
|
|
|
25593
26210
|
"immutable": true,
|
|
25594
26211
|
"locationInModule": {
|
|
25595
26212
|
"filename": "src/javascript/node-project.ts",
|
|
25596
|
-
"line":
|
|
26213
|
+
"line": 139
|
|
25597
26214
|
},
|
|
25598
26215
|
"name": "dependabot",
|
|
25599
26216
|
"optional": true,
|
|
@@ -25611,7 +26228,7 @@
|
|
|
25611
26228
|
"immutable": true,
|
|
25612
26229
|
"locationInModule": {
|
|
25613
26230
|
"filename": "src/javascript/node-project.ts",
|
|
25614
|
-
"line":
|
|
26231
|
+
"line": 146
|
|
25615
26232
|
},
|
|
25616
26233
|
"name": "dependabotOptions",
|
|
25617
26234
|
"optional": true,
|
|
@@ -25630,7 +26247,7 @@
|
|
|
25630
26247
|
"immutable": true,
|
|
25631
26248
|
"locationInModule": {
|
|
25632
26249
|
"filename": "src/javascript/node-project.ts",
|
|
25633
|
-
"line":
|
|
26250
|
+
"line": 154
|
|
25634
26251
|
},
|
|
25635
26252
|
"name": "depsUpgrade",
|
|
25636
26253
|
"optional": true,
|
|
@@ -25648,7 +26265,7 @@
|
|
|
25648
26265
|
"immutable": true,
|
|
25649
26266
|
"locationInModule": {
|
|
25650
26267
|
"filename": "src/javascript/node-project.ts",
|
|
25651
|
-
"line":
|
|
26268
|
+
"line": 161
|
|
25652
26269
|
},
|
|
25653
26270
|
"name": "depsUpgradeOptions",
|
|
25654
26271
|
"optional": true,
|
|
@@ -25665,7 +26282,7 @@
|
|
|
25665
26282
|
"immutable": true,
|
|
25666
26283
|
"locationInModule": {
|
|
25667
26284
|
"filename": "src/javascript/node-project.ts",
|
|
25668
|
-
"line":
|
|
26285
|
+
"line": 248
|
|
25669
26286
|
},
|
|
25670
26287
|
"name": "gitignore",
|
|
25671
26288
|
"optional": true,
|
|
@@ -25688,7 +26305,7 @@
|
|
|
25688
26305
|
"immutable": true,
|
|
25689
26306
|
"locationInModule": {
|
|
25690
26307
|
"filename": "src/javascript/node-project.ts",
|
|
25691
|
-
"line":
|
|
26308
|
+
"line": 254
|
|
25692
26309
|
},
|
|
25693
26310
|
"name": "jest",
|
|
25694
26311
|
"optional": true,
|
|
@@ -25706,7 +26323,7 @@
|
|
|
25706
26323
|
"immutable": true,
|
|
25707
26324
|
"locationInModule": {
|
|
25708
26325
|
"filename": "src/javascript/node-project.ts",
|
|
25709
|
-
"line":
|
|
26326
|
+
"line": 260
|
|
25710
26327
|
},
|
|
25711
26328
|
"name": "jestOptions",
|
|
25712
26329
|
"optional": true,
|
|
@@ -25725,7 +26342,7 @@
|
|
|
25725
26342
|
"immutable": true,
|
|
25726
26343
|
"locationInModule": {
|
|
25727
26344
|
"filename": "src/javascript/node-project.ts",
|
|
25728
|
-
"line":
|
|
26345
|
+
"line": 66
|
|
25729
26346
|
},
|
|
25730
26347
|
"name": "mutableBuild",
|
|
25731
26348
|
"optional": true,
|
|
@@ -25743,7 +26360,7 @@
|
|
|
25743
26360
|
"immutable": true,
|
|
25744
26361
|
"locationInModule": {
|
|
25745
26362
|
"filename": "src/javascript/node-project.ts",
|
|
25746
|
-
"line":
|
|
26363
|
+
"line": 229
|
|
25747
26364
|
},
|
|
25748
26365
|
"name": "npmignore",
|
|
25749
26366
|
"optional": true,
|
|
@@ -25766,7 +26383,7 @@
|
|
|
25766
26383
|
"immutable": true,
|
|
25767
26384
|
"locationInModule": {
|
|
25768
26385
|
"filename": "src/javascript/node-project.ts",
|
|
25769
|
-
"line":
|
|
26386
|
+
"line": 223
|
|
25770
26387
|
},
|
|
25771
26388
|
"name": "npmignoreEnabled",
|
|
25772
26389
|
"optional": true,
|
|
@@ -25774,6 +26391,24 @@
|
|
|
25774
26391
|
"primitive": "boolean"
|
|
25775
26392
|
}
|
|
25776
26393
|
},
|
|
26394
|
+
{
|
|
26395
|
+
"abstract": true,
|
|
26396
|
+
"docs": {
|
|
26397
|
+
"default": "true",
|
|
26398
|
+
"stability": "experimental",
|
|
26399
|
+
"summary": "Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`)."
|
|
26400
|
+
},
|
|
26401
|
+
"immutable": true,
|
|
26402
|
+
"locationInModule": {
|
|
26403
|
+
"filename": "src/javascript/node-project.ts",
|
|
26404
|
+
"line": 294
|
|
26405
|
+
},
|
|
26406
|
+
"name": "package",
|
|
26407
|
+
"optional": true,
|
|
26408
|
+
"type": {
|
|
26409
|
+
"primitive": "boolean"
|
|
26410
|
+
}
|
|
26411
|
+
},
|
|
25777
26412
|
{
|
|
25778
26413
|
"abstract": true,
|
|
25779
26414
|
"docs": {
|
|
@@ -25784,7 +26419,7 @@
|
|
|
25784
26419
|
"immutable": true,
|
|
25785
26420
|
"locationInModule": {
|
|
25786
26421
|
"filename": "src/javascript/node-project.ts",
|
|
25787
|
-
"line":
|
|
26422
|
+
"line": 49
|
|
25788
26423
|
},
|
|
25789
26424
|
"name": "projenDevDependency",
|
|
25790
26425
|
"optional": true,
|
|
@@ -25802,7 +26437,7 @@
|
|
|
25802
26437
|
"immutable": true,
|
|
25803
26438
|
"locationInModule": {
|
|
25804
26439
|
"filename": "src/javascript/node-project.ts",
|
|
25805
|
-
"line":
|
|
26440
|
+
"line": 268
|
|
25806
26441
|
},
|
|
25807
26442
|
"name": "projenrcJs",
|
|
25808
26443
|
"optional": true,
|
|
@@ -25820,7 +26455,7 @@
|
|
|
25820
26455
|
"immutable": true,
|
|
25821
26456
|
"locationInModule": {
|
|
25822
26457
|
"filename": "src/javascript/node-project.ts",
|
|
25823
|
-
"line":
|
|
26458
|
+
"line": 274
|
|
25824
26459
|
},
|
|
25825
26460
|
"name": "projenrcJsOptions",
|
|
25826
26461
|
"optional": true,
|
|
@@ -25840,7 +26475,7 @@
|
|
|
25840
26475
|
"immutable": true,
|
|
25841
26476
|
"locationInModule": {
|
|
25842
26477
|
"filename": "src/javascript/node-project.ts",
|
|
25843
|
-
"line":
|
|
26478
|
+
"line": 188
|
|
25844
26479
|
},
|
|
25845
26480
|
"name": "projenUpgradeAutoMerge",
|
|
25846
26481
|
"optional": true,
|
|
@@ -25858,7 +26493,7 @@
|
|
|
25858
26493
|
"immutable": true,
|
|
25859
26494
|
"locationInModule": {
|
|
25860
26495
|
"filename": "src/javascript/node-project.ts",
|
|
25861
|
-
"line":
|
|
26496
|
+
"line": 215
|
|
25862
26497
|
},
|
|
25863
26498
|
"name": "projenUpgradeSchedule",
|
|
25864
26499
|
"optional": true,
|
|
@@ -25882,7 +26517,7 @@
|
|
|
25882
26517
|
"immutable": true,
|
|
25883
26518
|
"locationInModule": {
|
|
25884
26519
|
"filename": "src/javascript/node-project.ts",
|
|
25885
|
-
"line":
|
|
26520
|
+
"line": 177
|
|
25886
26521
|
},
|
|
25887
26522
|
"name": "projenUpgradeSecret",
|
|
25888
26523
|
"optional": true,
|
|
@@ -25900,7 +26535,7 @@
|
|
|
25900
26535
|
"immutable": true,
|
|
25901
26536
|
"locationInModule": {
|
|
25902
26537
|
"filename": "src/javascript/node-project.ts",
|
|
25903
|
-
"line":
|
|
26538
|
+
"line": 42
|
|
25904
26539
|
},
|
|
25905
26540
|
"name": "projenVersion",
|
|
25906
26541
|
"optional": true,
|
|
@@ -25918,7 +26553,7 @@
|
|
|
25918
26553
|
"immutable": true,
|
|
25919
26554
|
"locationInModule": {
|
|
25920
26555
|
"filename": "src/javascript/node-project.ts",
|
|
25921
|
-
"line":
|
|
26556
|
+
"line": 236
|
|
25922
26557
|
},
|
|
25923
26558
|
"name": "pullRequestTemplate",
|
|
25924
26559
|
"optional": true,
|
|
@@ -25936,7 +26571,7 @@
|
|
|
25936
26571
|
"immutable": true,
|
|
25937
26572
|
"locationInModule": {
|
|
25938
26573
|
"filename": "src/javascript/node-project.ts",
|
|
25939
|
-
"line":
|
|
26574
|
+
"line": 243
|
|
25940
26575
|
},
|
|
25941
26576
|
"name": "pullRequestTemplateContents",
|
|
25942
26577
|
"optional": true,
|
|
@@ -25962,7 +26597,7 @@
|
|
|
25962
26597
|
"immutable": true,
|
|
25963
26598
|
"locationInModule": {
|
|
25964
26599
|
"filename": "src/javascript/node-project.ts",
|
|
25965
|
-
"line":
|
|
26600
|
+
"line": 97
|
|
25966
26601
|
},
|
|
25967
26602
|
"name": "release",
|
|
25968
26603
|
"optional": true,
|
|
@@ -25980,7 +26615,7 @@
|
|
|
25980
26615
|
"immutable": true,
|
|
25981
26616
|
"locationInModule": {
|
|
25982
26617
|
"filename": "src/javascript/node-project.ts",
|
|
25983
|
-
"line":
|
|
26618
|
+
"line": 124
|
|
25984
26619
|
},
|
|
25985
26620
|
"name": "releaseToNpm",
|
|
25986
26621
|
"optional": true,
|
|
@@ -25999,7 +26634,7 @@
|
|
|
25999
26634
|
"immutable": true,
|
|
26000
26635
|
"locationInModule": {
|
|
26001
26636
|
"filename": "src/javascript/node-project.ts",
|
|
26002
|
-
"line":
|
|
26637
|
+
"line": 89
|
|
26003
26638
|
},
|
|
26004
26639
|
"name": "releaseWorkflow",
|
|
26005
26640
|
"optional": true,
|
|
@@ -26017,7 +26652,7 @@
|
|
|
26017
26652
|
"immutable": true,
|
|
26018
26653
|
"locationInModule": {
|
|
26019
26654
|
"filename": "src/javascript/node-project.ts",
|
|
26020
|
-
"line":
|
|
26655
|
+
"line": 111
|
|
26021
26656
|
},
|
|
26022
26657
|
"name": "workflowBootstrapSteps",
|
|
26023
26658
|
"optional": true,
|
|
@@ -26040,7 +26675,7 @@
|
|
|
26040
26675
|
"immutable": true,
|
|
26041
26676
|
"locationInModule": {
|
|
26042
26677
|
"filename": "src/javascript/node-project.ts",
|
|
26043
|
-
"line":
|
|
26678
|
+
"line": 118
|
|
26044
26679
|
},
|
|
26045
26680
|
"name": "workflowGitIdentity",
|
|
26046
26681
|
"optional": true,
|
|
@@ -26058,7 +26693,7 @@
|
|
|
26058
26693
|
"immutable": true,
|
|
26059
26694
|
"locationInModule": {
|
|
26060
26695
|
"filename": "src/javascript/node-project.ts",
|
|
26061
|
-
"line":
|
|
26696
|
+
"line": 131
|
|
26062
26697
|
},
|
|
26063
26698
|
"name": "workflowNodeVersion",
|
|
26064
26699
|
"optional": true,
|
|
@@ -26079,7 +26714,7 @@
|
|
|
26079
26714
|
"kind": "interface",
|
|
26080
26715
|
"locationInModule": {
|
|
26081
26716
|
"filename": "src/javascript/node-project.ts",
|
|
26082
|
-
"line":
|
|
26717
|
+
"line": 918
|
|
26083
26718
|
},
|
|
26084
26719
|
"name": "NodeWorkflowSteps",
|
|
26085
26720
|
"namespace": "javascript",
|
|
@@ -26092,7 +26727,7 @@
|
|
|
26092
26727
|
"immutable": true,
|
|
26093
26728
|
"locationInModule": {
|
|
26094
26729
|
"filename": "src/javascript/node-project.ts",
|
|
26095
|
-
"line":
|
|
26730
|
+
"line": 919
|
|
26096
26731
|
},
|
|
26097
26732
|
"name": "antitamper",
|
|
26098
26733
|
"type": {
|
|
@@ -26112,7 +26747,7 @@
|
|
|
26112
26747
|
"immutable": true,
|
|
26113
26748
|
"locationInModule": {
|
|
26114
26749
|
"filename": "src/javascript/node-project.ts",
|
|
26115
|
-
"line":
|
|
26750
|
+
"line": 920
|
|
26116
26751
|
},
|
|
26117
26752
|
"name": "install",
|
|
26118
26753
|
"type": {
|
|
@@ -27481,7 +28116,7 @@
|
|
|
27481
28116
|
},
|
|
27482
28117
|
"locationInModule": {
|
|
27483
28118
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27484
|
-
"line":
|
|
28119
|
+
"line": 116
|
|
27485
28120
|
},
|
|
27486
28121
|
"parameters": [
|
|
27487
28122
|
{
|
|
@@ -27502,9 +28137,33 @@
|
|
|
27502
28137
|
"kind": "class",
|
|
27503
28138
|
"locationInModule": {
|
|
27504
28139
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27505
|
-
"line":
|
|
28140
|
+
"line": 92
|
|
27506
28141
|
},
|
|
27507
28142
|
"methods": [
|
|
28143
|
+
{
|
|
28144
|
+
"docs": {
|
|
28145
|
+
"stability": "experimental",
|
|
28146
|
+
"summary": "Add steps to execute a successful build."
|
|
28147
|
+
},
|
|
28148
|
+
"locationInModule": {
|
|
28149
|
+
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28150
|
+
"line": 134
|
|
28151
|
+
},
|
|
28152
|
+
"name": "addPostBuildSteps",
|
|
28153
|
+
"parameters": [
|
|
28154
|
+
{
|
|
28155
|
+
"docs": {
|
|
28156
|
+
"summary": "worklfow steps."
|
|
28157
|
+
},
|
|
28158
|
+
"name": "steps",
|
|
28159
|
+
"type": {
|
|
28160
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
28161
|
+
},
|
|
28162
|
+
"variadic": true
|
|
28163
|
+
}
|
|
28164
|
+
],
|
|
28165
|
+
"variadic": true
|
|
28166
|
+
},
|
|
27508
28167
|
{
|
|
27509
28168
|
"docs": {
|
|
27510
28169
|
"stability": "experimental",
|
|
@@ -27512,7 +28171,7 @@
|
|
|
27512
28171
|
},
|
|
27513
28172
|
"locationInModule": {
|
|
27514
28173
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27515
|
-
"line":
|
|
28174
|
+
"line": 140
|
|
27516
28175
|
},
|
|
27517
28176
|
"name": "preSynthesize",
|
|
27518
28177
|
"overrides": "projen.Component"
|
|
@@ -27529,7 +28188,7 @@
|
|
|
27529
28188
|
"immutable": true,
|
|
27530
28189
|
"locationInModule": {
|
|
27531
28190
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27532
|
-
"line":
|
|
28191
|
+
"line": 106
|
|
27533
28192
|
},
|
|
27534
28193
|
"name": "ignoresProjen",
|
|
27535
28194
|
"type": {
|
|
@@ -27545,7 +28204,7 @@
|
|
|
27545
28204
|
"immutable": true,
|
|
27546
28205
|
"locationInModule": {
|
|
27547
28206
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27548
|
-
"line":
|
|
28207
|
+
"line": 97
|
|
27549
28208
|
},
|
|
27550
28209
|
"name": "workflows",
|
|
27551
28210
|
"type": {
|
|
@@ -27556,6 +28215,21 @@
|
|
|
27556
28215
|
"kind": "array"
|
|
27557
28216
|
}
|
|
27558
28217
|
}
|
|
28218
|
+
},
|
|
28219
|
+
{
|
|
28220
|
+
"docs": {
|
|
28221
|
+
"stability": "experimental",
|
|
28222
|
+
"summary": "Container definitions for the upgrade workflow."
|
|
28223
|
+
},
|
|
28224
|
+
"locationInModule": {
|
|
28225
|
+
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28226
|
+
"line": 111
|
|
28227
|
+
},
|
|
28228
|
+
"name": "containerOptions",
|
|
28229
|
+
"optional": true,
|
|
28230
|
+
"type": {
|
|
28231
|
+
"fqn": "projen.github.workflows.ContainerOptions"
|
|
28232
|
+
}
|
|
27559
28233
|
}
|
|
27560
28234
|
],
|
|
27561
28235
|
"symbolId": "src/javascript/upgrade-dependencies:UpgradeDependencies"
|
|
@@ -27571,7 +28245,7 @@
|
|
|
27571
28245
|
"kind": "interface",
|
|
27572
28246
|
"locationInModule": {
|
|
27573
28247
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27574
|
-
"line":
|
|
28248
|
+
"line": 25
|
|
27575
28249
|
},
|
|
27576
28250
|
"name": "UpgradeDependenciesOptions",
|
|
27577
28251
|
"namespace": "javascript",
|
|
@@ -27586,7 +28260,7 @@
|
|
|
27586
28260
|
"immutable": true,
|
|
27587
28261
|
"locationInModule": {
|
|
27588
28262
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27589
|
-
"line":
|
|
28263
|
+
"line": 32
|
|
27590
28264
|
},
|
|
27591
28265
|
"name": "exclude",
|
|
27592
28266
|
"optional": true,
|
|
@@ -27609,7 +28283,7 @@
|
|
|
27609
28283
|
"immutable": true,
|
|
27610
28284
|
"locationInModule": {
|
|
27611
28285
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27612
|
-
"line":
|
|
28286
|
+
"line": 79
|
|
27613
28287
|
},
|
|
27614
28288
|
"name": "ignoreProjen",
|
|
27615
28289
|
"optional": true,
|
|
@@ -27627,7 +28301,7 @@
|
|
|
27627
28301
|
"immutable": true,
|
|
27628
28302
|
"locationInModule": {
|
|
27629
28303
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27630
|
-
"line":
|
|
28304
|
+
"line": 39
|
|
27631
28305
|
},
|
|
27632
28306
|
"name": "include",
|
|
27633
28307
|
"optional": true,
|
|
@@ -27650,7 +28324,7 @@
|
|
|
27650
28324
|
"immutable": true,
|
|
27651
28325
|
"locationInModule": {
|
|
27652
28326
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27653
|
-
"line":
|
|
28327
|
+
"line": 72
|
|
27654
28328
|
},
|
|
27655
28329
|
"name": "pullRequestTitle",
|
|
27656
28330
|
"optional": true,
|
|
@@ -27668,7 +28342,7 @@
|
|
|
27668
28342
|
"immutable": true,
|
|
27669
28343
|
"locationInModule": {
|
|
27670
28344
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27671
|
-
"line":
|
|
28345
|
+
"line": 86
|
|
27672
28346
|
},
|
|
27673
28347
|
"name": "signoff",
|
|
27674
28348
|
"optional": true,
|
|
@@ -27687,7 +28361,7 @@
|
|
|
27687
28361
|
"immutable": true,
|
|
27688
28362
|
"locationInModule": {
|
|
27689
28363
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27690
|
-
"line":
|
|
28364
|
+
"line": 65
|
|
27691
28365
|
},
|
|
27692
28366
|
"name": "taskName",
|
|
27693
28367
|
"optional": true,
|
|
@@ -27706,7 +28380,7 @@
|
|
|
27706
28380
|
"immutable": true,
|
|
27707
28381
|
"locationInModule": {
|
|
27708
28382
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27709
|
-
"line":
|
|
28383
|
+
"line": 50
|
|
27710
28384
|
},
|
|
27711
28385
|
"name": "workflow",
|
|
27712
28386
|
"optional": true,
|
|
@@ -27725,7 +28399,7 @@
|
|
|
27725
28399
|
"immutable": true,
|
|
27726
28400
|
"locationInModule": {
|
|
27727
28401
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27728
|
-
"line":
|
|
28402
|
+
"line": 57
|
|
27729
28403
|
},
|
|
27730
28404
|
"name": "workflowOptions",
|
|
27731
28405
|
"optional": true,
|
|
@@ -27746,7 +28420,7 @@
|
|
|
27746
28420
|
"kind": "class",
|
|
27747
28421
|
"locationInModule": {
|
|
27748
28422
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27749
|
-
"line":
|
|
28423
|
+
"line": 486
|
|
27750
28424
|
},
|
|
27751
28425
|
"methods": [
|
|
27752
28426
|
{
|
|
@@ -27756,7 +28430,7 @@
|
|
|
27756
28430
|
},
|
|
27757
28431
|
"locationInModule": {
|
|
27758
28432
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27759
|
-
"line":
|
|
28433
|
+
"line": 516
|
|
27760
28434
|
},
|
|
27761
28435
|
"name": "expressions",
|
|
27762
28436
|
"parameters": [
|
|
@@ -27792,7 +28466,7 @@
|
|
|
27792
28466
|
"immutable": true,
|
|
27793
28467
|
"locationInModule": {
|
|
27794
28468
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27795
|
-
"line":
|
|
28469
|
+
"line": 496
|
|
27796
28470
|
},
|
|
27797
28471
|
"name": "DAILY",
|
|
27798
28472
|
"static": true,
|
|
@@ -27809,7 +28483,7 @@
|
|
|
27809
28483
|
"immutable": true,
|
|
27810
28484
|
"locationInModule": {
|
|
27811
28485
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27812
|
-
"line":
|
|
28486
|
+
"line": 511
|
|
27813
28487
|
},
|
|
27814
28488
|
"name": "MONTHLY",
|
|
27815
28489
|
"static": true,
|
|
@@ -27826,7 +28500,7 @@
|
|
|
27826
28500
|
"immutable": true,
|
|
27827
28501
|
"locationInModule": {
|
|
27828
28502
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27829
|
-
"line":
|
|
28503
|
+
"line": 491
|
|
27830
28504
|
},
|
|
27831
28505
|
"name": "NEVER",
|
|
27832
28506
|
"static": true,
|
|
@@ -27843,7 +28517,7 @@
|
|
|
27843
28517
|
"immutable": true,
|
|
27844
28518
|
"locationInModule": {
|
|
27845
28519
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27846
|
-
"line":
|
|
28520
|
+
"line": 501
|
|
27847
28521
|
},
|
|
27848
28522
|
"name": "WEEKDAY",
|
|
27849
28523
|
"static": true,
|
|
@@ -27860,7 +28534,7 @@
|
|
|
27860
28534
|
"immutable": true,
|
|
27861
28535
|
"locationInModule": {
|
|
27862
28536
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27863
|
-
"line":
|
|
28537
|
+
"line": 506
|
|
27864
28538
|
},
|
|
27865
28539
|
"name": "WEEKLY",
|
|
27866
28540
|
"static": true,
|
|
@@ -27875,7 +28549,7 @@
|
|
|
27875
28549
|
"immutable": true,
|
|
27876
28550
|
"locationInModule": {
|
|
27877
28551
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27878
|
-
"line":
|
|
28552
|
+
"line": 520
|
|
27879
28553
|
},
|
|
27880
28554
|
"name": "cron",
|
|
27881
28555
|
"type": {
|
|
@@ -27901,7 +28575,7 @@
|
|
|
27901
28575
|
"kind": "interface",
|
|
27902
28576
|
"locationInModule": {
|
|
27903
28577
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27904
|
-
"line":
|
|
28578
|
+
"line": 410
|
|
27905
28579
|
},
|
|
27906
28580
|
"name": "UpgradeDependenciesWorkflowOptions",
|
|
27907
28581
|
"namespace": "javascript",
|
|
@@ -27916,7 +28590,7 @@
|
|
|
27916
28590
|
"immutable": true,
|
|
27917
28591
|
"locationInModule": {
|
|
27918
28592
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27919
|
-
"line":
|
|
28593
|
+
"line": 468
|
|
27920
28594
|
},
|
|
27921
28595
|
"name": "branches",
|
|
27922
28596
|
"optional": true,
|
|
@@ -27939,7 +28613,7 @@
|
|
|
27939
28613
|
"immutable": true,
|
|
27940
28614
|
"locationInModule": {
|
|
27941
28615
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27942
|
-
"line":
|
|
28616
|
+
"line": 461
|
|
27943
28617
|
},
|
|
27944
28618
|
"name": "container",
|
|
27945
28619
|
"optional": true,
|
|
@@ -27960,7 +28634,7 @@
|
|
|
27960
28634
|
"immutable": true,
|
|
27961
28635
|
"locationInModule": {
|
|
27962
28636
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27963
|
-
"line":
|
|
28637
|
+
"line": 474
|
|
27964
28638
|
},
|
|
27965
28639
|
"name": "gitIdentity",
|
|
27966
28640
|
"optional": true,
|
|
@@ -27978,7 +28652,7 @@
|
|
|
27978
28652
|
"immutable": true,
|
|
27979
28653
|
"locationInModule": {
|
|
27980
28654
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
27981
|
-
"line":
|
|
28655
|
+
"line": 440
|
|
27982
28656
|
},
|
|
27983
28657
|
"name": "labels",
|
|
27984
28658
|
"optional": true,
|
|
@@ -28003,7 +28677,7 @@
|
|
|
28003
28677
|
"immutable": true,
|
|
28004
28678
|
"locationInModule": {
|
|
28005
28679
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28006
|
-
"line":
|
|
28680
|
+
"line": 454
|
|
28007
28681
|
},
|
|
28008
28682
|
"name": "rebuild",
|
|
28009
28683
|
"optional": true,
|
|
@@ -28021,7 +28695,7 @@
|
|
|
28021
28695
|
"immutable": true,
|
|
28022
28696
|
"locationInModule": {
|
|
28023
28697
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28024
|
-
"line":
|
|
28698
|
+
"line": 480
|
|
28025
28699
|
},
|
|
28026
28700
|
"name": "runsOn",
|
|
28027
28701
|
"optional": true,
|
|
@@ -28044,7 +28718,7 @@
|
|
|
28044
28718
|
"immutable": true,
|
|
28045
28719
|
"locationInModule": {
|
|
28046
28720
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28047
|
-
"line":
|
|
28721
|
+
"line": 417
|
|
28048
28722
|
},
|
|
28049
28723
|
"name": "schedule",
|
|
28050
28724
|
"optional": true,
|
|
@@ -28064,7 +28738,7 @@
|
|
|
28064
28738
|
"immutable": true,
|
|
28065
28739
|
"locationInModule": {
|
|
28066
28740
|
"filename": "src/javascript/upgrade-dependencies.ts",
|
|
28067
|
-
"line":
|
|
28741
|
+
"line": 433
|
|
28068
28742
|
},
|
|
28069
28743
|
"name": "secret",
|
|
28070
28744
|
"optional": true,
|
|
@@ -30634,7 +31308,7 @@
|
|
|
30634
31308
|
"kind": "interface",
|
|
30635
31309
|
"locationInModule": {
|
|
30636
31310
|
"filename": "src/release/release.ts",
|
|
30637
|
-
"line":
|
|
31311
|
+
"line": 531
|
|
30638
31312
|
},
|
|
30639
31313
|
"name": "BranchOptions",
|
|
30640
31314
|
"namespace": "release",
|
|
@@ -30648,7 +31322,7 @@
|
|
|
30648
31322
|
"immutable": true,
|
|
30649
31323
|
"locationInModule": {
|
|
30650
31324
|
"filename": "src/release/release.ts",
|
|
30651
|
-
"line":
|
|
31325
|
+
"line": 541
|
|
30652
31326
|
},
|
|
30653
31327
|
"name": "majorVersion",
|
|
30654
31328
|
"type": {
|
|
@@ -30665,7 +31339,7 @@
|
|
|
30665
31339
|
"immutable": true,
|
|
30666
31340
|
"locationInModule": {
|
|
30667
31341
|
"filename": "src/release/release.ts",
|
|
30668
|
-
"line":
|
|
31342
|
+
"line": 569
|
|
30669
31343
|
},
|
|
30670
31344
|
"name": "npmDistTag",
|
|
30671
31345
|
"optional": true,
|
|
@@ -30683,7 +31357,7 @@
|
|
|
30683
31357
|
"immutable": true,
|
|
30684
31358
|
"locationInModule": {
|
|
30685
31359
|
"filename": "src/release/release.ts",
|
|
30686
|
-
"line":
|
|
31360
|
+
"line": 548
|
|
30687
31361
|
},
|
|
30688
31362
|
"name": "prerelease",
|
|
30689
31363
|
"optional": true,
|
|
@@ -30702,7 +31376,7 @@
|
|
|
30702
31376
|
"immutable": true,
|
|
30703
31377
|
"locationInModule": {
|
|
30704
31378
|
"filename": "src/release/release.ts",
|
|
30705
|
-
"line":
|
|
31379
|
+
"line": 562
|
|
30706
31380
|
},
|
|
30707
31381
|
"name": "tagPrefix",
|
|
30708
31382
|
"optional": true,
|
|
@@ -30720,7 +31394,7 @@
|
|
|
30720
31394
|
"immutable": true,
|
|
30721
31395
|
"locationInModule": {
|
|
30722
31396
|
"filename": "src/release/release.ts",
|
|
30723
|
-
"line":
|
|
31397
|
+
"line": 536
|
|
30724
31398
|
},
|
|
30725
31399
|
"name": "workflowName",
|
|
30726
31400
|
"optional": true,
|
|
@@ -30741,7 +31415,7 @@
|
|
|
30741
31415
|
"kind": "interface",
|
|
30742
31416
|
"locationInModule": {
|
|
30743
31417
|
"filename": "src/release/publisher.ts",
|
|
30744
|
-
"line":
|
|
31418
|
+
"line": 602
|
|
30745
31419
|
},
|
|
30746
31420
|
"name": "CodeArtifactOptions",
|
|
30747
31421
|
"namespace": "release",
|
|
@@ -30757,7 +31431,7 @@
|
|
|
30757
31431
|
"immutable": true,
|
|
30758
31432
|
"locationInModule": {
|
|
30759
31433
|
"filename": "src/release/publisher.ts",
|
|
30760
|
-
"line":
|
|
31434
|
+
"line": 609
|
|
30761
31435
|
},
|
|
30762
31436
|
"name": "accessKeyIdSecret",
|
|
30763
31437
|
"optional": true,
|
|
@@ -30775,7 +31449,7 @@
|
|
|
30775
31449
|
"immutable": true,
|
|
30776
31450
|
"locationInModule": {
|
|
30777
31451
|
"filename": "src/release/publisher.ts",
|
|
30778
|
-
"line":
|
|
31452
|
+
"line": 625
|
|
30779
31453
|
},
|
|
30780
31454
|
"name": "roleToAssume",
|
|
30781
31455
|
"optional": true,
|
|
@@ -30794,7 +31468,7 @@
|
|
|
30794
31468
|
"immutable": true,
|
|
30795
31469
|
"locationInModule": {
|
|
30796
31470
|
"filename": "src/release/publisher.ts",
|
|
30797
|
-
"line":
|
|
31471
|
+
"line": 617
|
|
30798
31472
|
},
|
|
30799
31473
|
"name": "secretAccessKeySecret",
|
|
30800
31474
|
"optional": true,
|
|
@@ -30805,6 +31479,66 @@
|
|
|
30805
31479
|
],
|
|
30806
31480
|
"symbolId": "src/release/publisher:CodeArtifactOptions"
|
|
30807
31481
|
},
|
|
31482
|
+
"projen.release.CommonPublishOptions": {
|
|
31483
|
+
"assembly": "projen",
|
|
31484
|
+
"datatype": true,
|
|
31485
|
+
"docs": {
|
|
31486
|
+
"stability": "experimental",
|
|
31487
|
+
"summary": "Common publishing options."
|
|
31488
|
+
},
|
|
31489
|
+
"fqn": "projen.release.CommonPublishOptions",
|
|
31490
|
+
"kind": "interface",
|
|
31491
|
+
"locationInModule": {
|
|
31492
|
+
"filename": "src/release/publisher.ts",
|
|
31493
|
+
"line": 529
|
|
31494
|
+
},
|
|
31495
|
+
"name": "CommonPublishOptions",
|
|
31496
|
+
"namespace": "release",
|
|
31497
|
+
"properties": [
|
|
31498
|
+
{
|
|
31499
|
+
"abstract": true,
|
|
31500
|
+
"docs": {
|
|
31501
|
+
"remarks": "These steps are executed after `dist/` has been populated with the build\noutput.",
|
|
31502
|
+
"stability": "experimental",
|
|
31503
|
+
"summary": "Steps to execute before executing the publishing command. These can be used to prepare the artifact for publishing if neede."
|
|
31504
|
+
},
|
|
31505
|
+
"immutable": true,
|
|
31506
|
+
"locationInModule": {
|
|
31507
|
+
"filename": "src/release/publisher.ts",
|
|
31508
|
+
"line": 537
|
|
31509
|
+
},
|
|
31510
|
+
"name": "prePublishSteps",
|
|
31511
|
+
"optional": true,
|
|
31512
|
+
"type": {
|
|
31513
|
+
"collection": {
|
|
31514
|
+
"elementtype": {
|
|
31515
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
31516
|
+
},
|
|
31517
|
+
"kind": "array"
|
|
31518
|
+
}
|
|
31519
|
+
}
|
|
31520
|
+
},
|
|
31521
|
+
{
|
|
31522
|
+
"abstract": true,
|
|
31523
|
+
"docs": {
|
|
31524
|
+
"default": "- no additional tools are installed",
|
|
31525
|
+
"stability": "experimental",
|
|
31526
|
+
"summary": "Additional tools to install in the publishing job."
|
|
31527
|
+
},
|
|
31528
|
+
"immutable": true,
|
|
31529
|
+
"locationInModule": {
|
|
31530
|
+
"filename": "src/release/publisher.ts",
|
|
31531
|
+
"line": 543
|
|
31532
|
+
},
|
|
31533
|
+
"name": "publishTools",
|
|
31534
|
+
"optional": true,
|
|
31535
|
+
"type": {
|
|
31536
|
+
"fqn": "projen.github.workflows.Tools"
|
|
31537
|
+
}
|
|
31538
|
+
}
|
|
31539
|
+
],
|
|
31540
|
+
"symbolId": "src/release/publisher:CommonPublishOptions"
|
|
31541
|
+
},
|
|
30808
31542
|
"projen.release.GitHubReleasesPublishOptions": {
|
|
30809
31543
|
"assembly": "projen",
|
|
30810
31544
|
"datatype": true,
|
|
@@ -30813,10 +31547,13 @@
|
|
|
30813
31547
|
"summary": "Publishing options for GitHub releases."
|
|
30814
31548
|
},
|
|
30815
31549
|
"fqn": "projen.release.GitHubReleasesPublishOptions",
|
|
31550
|
+
"interfaces": [
|
|
31551
|
+
"projen.release.CommonPublishOptions"
|
|
31552
|
+
],
|
|
30816
31553
|
"kind": "interface",
|
|
30817
31554
|
"locationInModule": {
|
|
30818
31555
|
"filename": "src/release/publisher.ts",
|
|
30819
|
-
"line":
|
|
31556
|
+
"line": 846
|
|
30820
31557
|
},
|
|
30821
31558
|
"name": "GitHubReleasesPublishOptions",
|
|
30822
31559
|
"namespace": "release",
|
|
@@ -30831,7 +31568,7 @@
|
|
|
30831
31568
|
"immutable": true,
|
|
30832
31569
|
"locationInModule": {
|
|
30833
31570
|
"filename": "src/release/publisher.ts",
|
|
30834
|
-
"line":
|
|
31571
|
+
"line": 831
|
|
30835
31572
|
},
|
|
30836
31573
|
"name": "changelogFile",
|
|
30837
31574
|
"type": {
|
|
@@ -30848,7 +31585,7 @@
|
|
|
30848
31585
|
"immutable": true,
|
|
30849
31586
|
"locationInModule": {
|
|
30850
31587
|
"filename": "src/release/publisher.ts",
|
|
30851
|
-
"line":
|
|
31588
|
+
"line": 824
|
|
30852
31589
|
},
|
|
30853
31590
|
"name": "releaseTagFile",
|
|
30854
31591
|
"type": {
|
|
@@ -30865,7 +31602,7 @@
|
|
|
30865
31602
|
"immutable": true,
|
|
30866
31603
|
"locationInModule": {
|
|
30867
31604
|
"filename": "src/release/publisher.ts",
|
|
30868
|
-
"line":
|
|
31605
|
+
"line": 817
|
|
30869
31606
|
},
|
|
30870
31607
|
"name": "versionFile",
|
|
30871
31608
|
"type": {
|
|
@@ -30886,7 +31623,7 @@
|
|
|
30886
31623
|
"kind": "interface",
|
|
30887
31624
|
"locationInModule": {
|
|
30888
31625
|
"filename": "src/release/publisher.ts",
|
|
30889
|
-
"line":
|
|
31626
|
+
"line": 851
|
|
30890
31627
|
},
|
|
30891
31628
|
"name": "GitPublishOptions",
|
|
30892
31629
|
"namespace": "release",
|
|
@@ -30901,7 +31638,7 @@
|
|
|
30901
31638
|
"immutable": true,
|
|
30902
31639
|
"locationInModule": {
|
|
30903
31640
|
"filename": "src/release/publisher.ts",
|
|
30904
|
-
"line":
|
|
31641
|
+
"line": 831
|
|
30905
31642
|
},
|
|
30906
31643
|
"name": "changelogFile",
|
|
30907
31644
|
"type": {
|
|
@@ -30918,7 +31655,7 @@
|
|
|
30918
31655
|
"immutable": true,
|
|
30919
31656
|
"locationInModule": {
|
|
30920
31657
|
"filename": "src/release/publisher.ts",
|
|
30921
|
-
"line":
|
|
31658
|
+
"line": 824
|
|
30922
31659
|
},
|
|
30923
31660
|
"name": "releaseTagFile",
|
|
30924
31661
|
"type": {
|
|
@@ -30935,7 +31672,7 @@
|
|
|
30935
31672
|
"immutable": true,
|
|
30936
31673
|
"locationInModule": {
|
|
30937
31674
|
"filename": "src/release/publisher.ts",
|
|
30938
|
-
"line":
|
|
31675
|
+
"line": 817
|
|
30939
31676
|
},
|
|
30940
31677
|
"name": "versionFile",
|
|
30941
31678
|
"type": {
|
|
@@ -30952,7 +31689,7 @@
|
|
|
30952
31689
|
"immutable": true,
|
|
30953
31690
|
"locationInModule": {
|
|
30954
31691
|
"filename": "src/release/publisher.ts",
|
|
30955
|
-
"line":
|
|
31692
|
+
"line": 862
|
|
30956
31693
|
},
|
|
30957
31694
|
"name": "gitBranch",
|
|
30958
31695
|
"optional": true,
|
|
@@ -30970,7 +31707,7 @@
|
|
|
30970
31707
|
"immutable": true,
|
|
30971
31708
|
"locationInModule": {
|
|
30972
31709
|
"filename": "src/release/publisher.ts",
|
|
30973
|
-
"line":
|
|
31710
|
+
"line": 869
|
|
30974
31711
|
},
|
|
30975
31712
|
"name": "gitPushCommand",
|
|
30976
31713
|
"optional": true,
|
|
@@ -30987,7 +31724,7 @@
|
|
|
30987
31724
|
"immutable": true,
|
|
30988
31725
|
"locationInModule": {
|
|
30989
31726
|
"filename": "src/release/publisher.ts",
|
|
30990
|
-
"line":
|
|
31727
|
+
"line": 855
|
|
30991
31728
|
},
|
|
30992
31729
|
"name": "projectChangelogFile",
|
|
30993
31730
|
"optional": true,
|
|
@@ -31006,10 +31743,13 @@
|
|
|
31006
31743
|
"stability": "deprecated"
|
|
31007
31744
|
},
|
|
31008
31745
|
"fqn": "projen.release.GoPublishOptions",
|
|
31746
|
+
"interfaces": [
|
|
31747
|
+
"projen.release.CommonPublishOptions"
|
|
31748
|
+
],
|
|
31009
31749
|
"kind": "interface",
|
|
31010
31750
|
"locationInModule": {
|
|
31011
31751
|
"filename": "src/release/publisher.ts",
|
|
31012
|
-
"line":
|
|
31752
|
+
"line": 768
|
|
31013
31753
|
},
|
|
31014
31754
|
"name": "GoPublishOptions",
|
|
31015
31755
|
"namespace": "release",
|
|
@@ -31024,7 +31764,7 @@
|
|
|
31024
31764
|
"immutable": true,
|
|
31025
31765
|
"locationInModule": {
|
|
31026
31766
|
"filename": "src/release/publisher.ts",
|
|
31027
|
-
"line":
|
|
31767
|
+
"line": 789
|
|
31028
31768
|
},
|
|
31029
31769
|
"name": "gitBranch",
|
|
31030
31770
|
"optional": true,
|
|
@@ -31042,7 +31782,7 @@
|
|
|
31042
31782
|
"immutable": true,
|
|
31043
31783
|
"locationInModule": {
|
|
31044
31784
|
"filename": "src/release/publisher.ts",
|
|
31045
|
-
"line":
|
|
31785
|
+
"line": 808
|
|
31046
31786
|
},
|
|
31047
31787
|
"name": "gitCommitMessage",
|
|
31048
31788
|
"optional": true,
|
|
@@ -31060,7 +31800,7 @@
|
|
|
31060
31800
|
"immutable": true,
|
|
31061
31801
|
"locationInModule": {
|
|
31062
31802
|
"filename": "src/release/publisher.ts",
|
|
31063
|
-
"line":
|
|
31803
|
+
"line": 782
|
|
31064
31804
|
},
|
|
31065
31805
|
"name": "githubRepo",
|
|
31066
31806
|
"optional": true,
|
|
@@ -31078,7 +31818,7 @@
|
|
|
31078
31818
|
"immutable": true,
|
|
31079
31819
|
"locationInModule": {
|
|
31080
31820
|
"filename": "src/release/publisher.ts",
|
|
31081
|
-
"line":
|
|
31821
|
+
"line": 775
|
|
31082
31822
|
},
|
|
31083
31823
|
"name": "githubTokenSecret",
|
|
31084
31824
|
"optional": true,
|
|
@@ -31099,7 +31839,7 @@
|
|
|
31099
31839
|
"immutable": true,
|
|
31100
31840
|
"locationInModule": {
|
|
31101
31841
|
"filename": "src/release/publisher.ts",
|
|
31102
|
-
"line":
|
|
31842
|
+
"line": 801
|
|
31103
31843
|
},
|
|
31104
31844
|
"name": "gitUserEmail",
|
|
31105
31845
|
"optional": true,
|
|
@@ -31117,7 +31857,7 @@
|
|
|
31117
31857
|
"immutable": true,
|
|
31118
31858
|
"locationInModule": {
|
|
31119
31859
|
"filename": "src/release/publisher.ts",
|
|
31120
|
-
"line":
|
|
31860
|
+
"line": 795
|
|
31121
31861
|
},
|
|
31122
31862
|
"name": "gitUserName",
|
|
31123
31863
|
"optional": true,
|
|
@@ -31142,7 +31882,7 @@
|
|
|
31142
31882
|
"kind": "interface",
|
|
31143
31883
|
"locationInModule": {
|
|
31144
31884
|
"filename": "src/release/publisher.ts",
|
|
31145
|
-
"line":
|
|
31885
|
+
"line": 677
|
|
31146
31886
|
},
|
|
31147
31887
|
"name": "JsiiReleaseMaven",
|
|
31148
31888
|
"namespace": "release",
|
|
@@ -31162,7 +31902,7 @@
|
|
|
31162
31902
|
"kind": "interface",
|
|
31163
31903
|
"locationInModule": {
|
|
31164
31904
|
"filename": "src/release/publisher.ts",
|
|
31165
|
-
"line":
|
|
31905
|
+
"line": 549
|
|
31166
31906
|
},
|
|
31167
31907
|
"name": "JsiiReleaseNpm",
|
|
31168
31908
|
"namespace": "release",
|
|
@@ -31182,7 +31922,7 @@
|
|
|
31182
31922
|
"kind": "interface",
|
|
31183
31923
|
"locationInModule": {
|
|
31184
31924
|
"filename": "src/release/publisher.ts",
|
|
31185
|
-
"line":
|
|
31925
|
+
"line": 660
|
|
31186
31926
|
},
|
|
31187
31927
|
"name": "JsiiReleaseNuget",
|
|
31188
31928
|
"namespace": "release",
|
|
@@ -31202,7 +31942,7 @@
|
|
|
31202
31942
|
"kind": "interface",
|
|
31203
31943
|
"locationInModule": {
|
|
31204
31944
|
"filename": "src/release/publisher.ts",
|
|
31205
|
-
"line":
|
|
31945
|
+
"line": 631
|
|
31206
31946
|
},
|
|
31207
31947
|
"name": "JsiiReleasePyPi",
|
|
31208
31948
|
"namespace": "release",
|
|
@@ -31289,10 +32029,13 @@
|
|
|
31289
32029
|
"summary": "Options for Maven releases."
|
|
31290
32030
|
},
|
|
31291
32031
|
"fqn": "projen.release.MavenPublishOptions",
|
|
32032
|
+
"interfaces": [
|
|
32033
|
+
"projen.release.CommonPublishOptions"
|
|
32034
|
+
],
|
|
31292
32035
|
"kind": "interface",
|
|
31293
32036
|
"locationInModule": {
|
|
31294
32037
|
"filename": "src/release/publisher.ts",
|
|
31295
|
-
"line":
|
|
32038
|
+
"line": 682
|
|
31296
32039
|
},
|
|
31297
32040
|
"name": "MavenPublishOptions",
|
|
31298
32041
|
"namespace": "release",
|
|
@@ -31308,7 +32051,7 @@
|
|
|
31308
32051
|
"immutable": true,
|
|
31309
32052
|
"locationInModule": {
|
|
31310
32053
|
"filename": "src/release/publisher.ts",
|
|
31311
|
-
"line":
|
|
32054
|
+
"line": 688
|
|
31312
32055
|
},
|
|
31313
32056
|
"name": "mavenEndpoint",
|
|
31314
32057
|
"optional": true,
|
|
@@ -31328,7 +32071,7 @@
|
|
|
31328
32071
|
"immutable": true,
|
|
31329
32072
|
"locationInModule": {
|
|
31330
32073
|
"filename": "src/release/publisher.ts",
|
|
31331
|
-
"line":
|
|
32074
|
+
"line": 721
|
|
31332
32075
|
},
|
|
31333
32076
|
"name": "mavenGpgPrivateKeyPassphrase",
|
|
31334
32077
|
"optional": true,
|
|
@@ -31348,7 +32091,7 @@
|
|
|
31348
32091
|
"immutable": true,
|
|
31349
32092
|
"locationInModule": {
|
|
31350
32093
|
"filename": "src/release/publisher.ts",
|
|
31351
|
-
"line":
|
|
32094
|
+
"line": 712
|
|
31352
32095
|
},
|
|
31353
32096
|
"name": "mavenGpgPrivateKeySecret",
|
|
31354
32097
|
"optional": true,
|
|
@@ -31368,7 +32111,7 @@
|
|
|
31368
32111
|
"immutable": true,
|
|
31369
32112
|
"locationInModule": {
|
|
31370
32113
|
"filename": "src/release/publisher.ts",
|
|
31371
|
-
"line":
|
|
32114
|
+
"line": 747
|
|
31372
32115
|
},
|
|
31373
32116
|
"name": "mavenPassword",
|
|
31374
32117
|
"optional": true,
|
|
@@ -31386,7 +32129,7 @@
|
|
|
31386
32129
|
"immutable": true,
|
|
31387
32130
|
"locationInModule": {
|
|
31388
32131
|
"filename": "src/release/publisher.ts",
|
|
31389
|
-
"line":
|
|
32132
|
+
"line": 702
|
|
31390
32133
|
},
|
|
31391
32134
|
"name": "mavenRepositoryUrl",
|
|
31392
32135
|
"optional": true,
|
|
@@ -31404,7 +32147,7 @@
|
|
|
31404
32147
|
"immutable": true,
|
|
31405
32148
|
"locationInModule": {
|
|
31406
32149
|
"filename": "src/release/publisher.ts",
|
|
31407
|
-
"line":
|
|
32150
|
+
"line": 695
|
|
31408
32151
|
},
|
|
31409
32152
|
"name": "mavenServerId",
|
|
31410
32153
|
"optional": true,
|
|
@@ -31422,7 +32165,7 @@
|
|
|
31422
32165
|
"immutable": true,
|
|
31423
32166
|
"locationInModule": {
|
|
31424
32167
|
"filename": "src/release/publisher.ts",
|
|
31425
|
-
"line":
|
|
32168
|
+
"line": 758
|
|
31426
32169
|
},
|
|
31427
32170
|
"name": "mavenStagingProfileId",
|
|
31428
32171
|
"optional": true,
|
|
@@ -31442,7 +32185,7 @@
|
|
|
31442
32185
|
"immutable": true,
|
|
31443
32186
|
"locationInModule": {
|
|
31444
32187
|
"filename": "src/release/publisher.ts",
|
|
31445
|
-
"line":
|
|
32188
|
+
"line": 734
|
|
31446
32189
|
},
|
|
31447
32190
|
"name": "mavenUsername",
|
|
31448
32191
|
"optional": true,
|
|
@@ -31461,10 +32204,13 @@
|
|
|
31461
32204
|
"summary": "Options for npm release."
|
|
31462
32205
|
},
|
|
31463
32206
|
"fqn": "projen.release.NpmPublishOptions",
|
|
32207
|
+
"interfaces": [
|
|
32208
|
+
"projen.release.CommonPublishOptions"
|
|
32209
|
+
],
|
|
31464
32210
|
"kind": "interface",
|
|
31465
32211
|
"locationInModule": {
|
|
31466
32212
|
"filename": "src/release/publisher.ts",
|
|
31467
|
-
"line":
|
|
32213
|
+
"line": 554
|
|
31468
32214
|
},
|
|
31469
32215
|
"name": "NpmPublishOptions",
|
|
31470
32216
|
"namespace": "release",
|
|
@@ -31479,7 +32225,7 @@
|
|
|
31479
32225
|
"immutable": true,
|
|
31480
32226
|
"locationInModule": {
|
|
31481
32227
|
"filename": "src/release/publisher.ts",
|
|
31482
|
-
"line":
|
|
32228
|
+
"line": 599
|
|
31483
32229
|
},
|
|
31484
32230
|
"name": "codeArtifactOptions",
|
|
31485
32231
|
"optional": true,
|
|
@@ -31499,7 +32245,7 @@
|
|
|
31499
32245
|
"immutable": true,
|
|
31500
32246
|
"locationInModule": {
|
|
31501
32247
|
"filename": "src/release/publisher.ts",
|
|
31502
|
-
"line":
|
|
32248
|
+
"line": 572
|
|
31503
32249
|
},
|
|
31504
32250
|
"name": "distTag",
|
|
31505
32251
|
"optional": true,
|
|
@@ -31517,7 +32263,7 @@
|
|
|
31517
32263
|
"immutable": true,
|
|
31518
32264
|
"locationInModule": {
|
|
31519
32265
|
"filename": "src/release/publisher.ts",
|
|
31520
|
-
"line":
|
|
32266
|
+
"line": 592
|
|
31521
32267
|
},
|
|
31522
32268
|
"name": "npmTokenSecret",
|
|
31523
32269
|
"optional": true,
|
|
@@ -31537,7 +32283,7 @@
|
|
|
31537
32283
|
"immutable": true,
|
|
31538
32284
|
"locationInModule": {
|
|
31539
32285
|
"filename": "src/release/publisher.ts",
|
|
31540
|
-
"line":
|
|
32286
|
+
"line": 586
|
|
31541
32287
|
},
|
|
31542
32288
|
"name": "registry",
|
|
31543
32289
|
"optional": true,
|
|
@@ -31556,10 +32302,13 @@
|
|
|
31556
32302
|
"summary": "Options for NuGet releases."
|
|
31557
32303
|
},
|
|
31558
32304
|
"fqn": "projen.release.NugetPublishOptions",
|
|
32305
|
+
"interfaces": [
|
|
32306
|
+
"projen.release.CommonPublishOptions"
|
|
32307
|
+
],
|
|
31559
32308
|
"kind": "interface",
|
|
31560
32309
|
"locationInModule": {
|
|
31561
32310
|
"filename": "src/release/publisher.ts",
|
|
31562
|
-
"line":
|
|
32311
|
+
"line": 665
|
|
31563
32312
|
},
|
|
31564
32313
|
"name": "NugetPublishOptions",
|
|
31565
32314
|
"namespace": "release",
|
|
@@ -31574,7 +32323,7 @@
|
|
|
31574
32323
|
"immutable": true,
|
|
31575
32324
|
"locationInModule": {
|
|
31576
32325
|
"filename": "src/release/publisher.ts",
|
|
31577
|
-
"line":
|
|
32326
|
+
"line": 671
|
|
31578
32327
|
},
|
|
31579
32328
|
"name": "nugetApiKeySecret",
|
|
31580
32329
|
"optional": true,
|
|
@@ -31600,7 +32349,7 @@
|
|
|
31600
32349
|
},
|
|
31601
32350
|
"locationInModule": {
|
|
31602
32351
|
"filename": "src/release/publisher.ts",
|
|
31603
|
-
"line":
|
|
32352
|
+
"line": 109
|
|
31604
32353
|
},
|
|
31605
32354
|
"parameters": [
|
|
31606
32355
|
{
|
|
@@ -31620,7 +32369,7 @@
|
|
|
31620
32369
|
"kind": "class",
|
|
31621
32370
|
"locationInModule": {
|
|
31622
32371
|
"filename": "src/release/publisher.ts",
|
|
31623
|
-
"line":
|
|
32372
|
+
"line": 93
|
|
31624
32373
|
},
|
|
31625
32374
|
"methods": [
|
|
31626
32375
|
{
|
|
@@ -31631,7 +32380,7 @@
|
|
|
31631
32380
|
},
|
|
31632
32381
|
"locationInModule": {
|
|
31633
32382
|
"filename": "src/release/publisher.ts",
|
|
31634
|
-
"line":
|
|
32383
|
+
"line": 152
|
|
31635
32384
|
},
|
|
31636
32385
|
"name": "publishToGit",
|
|
31637
32386
|
"parameters": [
|
|
@@ -31658,7 +32407,7 @@
|
|
|
31658
32407
|
},
|
|
31659
32408
|
"locationInModule": {
|
|
31660
32409
|
"filename": "src/release/publisher.ts",
|
|
31661
|
-
"line":
|
|
32410
|
+
"line": 187
|
|
31662
32411
|
},
|
|
31663
32412
|
"name": "publishToGitHubReleases",
|
|
31664
32413
|
"parameters": [
|
|
@@ -31680,7 +32429,7 @@
|
|
|
31680
32429
|
},
|
|
31681
32430
|
"locationInModule": {
|
|
31682
32431
|
"filename": "src/release/publisher.ts",
|
|
31683
|
-
"line":
|
|
32432
|
+
"line": 355
|
|
31684
32433
|
},
|
|
31685
32434
|
"name": "publishToGo",
|
|
31686
32435
|
"parameters": [
|
|
@@ -31703,7 +32452,7 @@
|
|
|
31703
32452
|
},
|
|
31704
32453
|
"locationInModule": {
|
|
31705
32454
|
"filename": "src/release/publisher.ts",
|
|
31706
|
-
"line":
|
|
32455
|
+
"line": 296
|
|
31707
32456
|
},
|
|
31708
32457
|
"name": "publishToMaven",
|
|
31709
32458
|
"parameters": [
|
|
@@ -31726,7 +32475,7 @@
|
|
|
31726
32475
|
},
|
|
31727
32476
|
"locationInModule": {
|
|
31728
32477
|
"filename": "src/release/publisher.ts",
|
|
31729
|
-
"line":
|
|
32478
|
+
"line": 236
|
|
31730
32479
|
},
|
|
31731
32480
|
"name": "publishToNpm",
|
|
31732
32481
|
"parameters": [
|
|
@@ -31749,7 +32498,7 @@
|
|
|
31749
32498
|
},
|
|
31750
32499
|
"locationInModule": {
|
|
31751
32500
|
"filename": "src/release/publisher.ts",
|
|
31752
|
-
"line":
|
|
32501
|
+
"line": 279
|
|
31753
32502
|
},
|
|
31754
32503
|
"name": "publishToNuget",
|
|
31755
32504
|
"parameters": [
|
|
@@ -31772,7 +32521,7 @@
|
|
|
31772
32521
|
},
|
|
31773
32522
|
"locationInModule": {
|
|
31774
32523
|
"filename": "src/release/publisher.ts",
|
|
31775
|
-
"line":
|
|
32524
|
+
"line": 334
|
|
31776
32525
|
},
|
|
31777
32526
|
"name": "publishToPyPi",
|
|
31778
32527
|
"parameters": [
|
|
@@ -31799,7 +32548,7 @@
|
|
|
31799
32548
|
"immutable": true,
|
|
31800
32549
|
"locationInModule": {
|
|
31801
32550
|
"filename": "src/release/publisher.ts",
|
|
31802
|
-
"line":
|
|
32551
|
+
"line": 95
|
|
31803
32552
|
},
|
|
31804
32553
|
"name": "artifactName",
|
|
31805
32554
|
"type": {
|
|
@@ -31813,7 +32562,7 @@
|
|
|
31813
32562
|
"immutable": true,
|
|
31814
32563
|
"locationInModule": {
|
|
31815
32564
|
"filename": "src/release/publisher.ts",
|
|
31816
|
-
"line":
|
|
32565
|
+
"line": 94
|
|
31817
32566
|
},
|
|
31818
32567
|
"name": "buildJobId",
|
|
31819
32568
|
"type": {
|
|
@@ -31827,7 +32576,7 @@
|
|
|
31827
32576
|
"immutable": true,
|
|
31828
32577
|
"locationInModule": {
|
|
31829
32578
|
"filename": "src/release/publisher.ts",
|
|
31830
|
-
"line":
|
|
32579
|
+
"line": 96
|
|
31831
32580
|
},
|
|
31832
32581
|
"name": "jsiiReleaseVersion",
|
|
31833
32582
|
"type": {
|
|
@@ -31841,7 +32590,7 @@
|
|
|
31841
32590
|
"immutable": true,
|
|
31842
32591
|
"locationInModule": {
|
|
31843
32592
|
"filename": "src/release/publisher.ts",
|
|
31844
|
-
"line":
|
|
32593
|
+
"line": 97
|
|
31845
32594
|
},
|
|
31846
32595
|
"name": "condition",
|
|
31847
32596
|
"optional": true,
|
|
@@ -31863,7 +32612,7 @@
|
|
|
31863
32612
|
"kind": "interface",
|
|
31864
32613
|
"locationInModule": {
|
|
31865
32614
|
"filename": "src/release/publisher.ts",
|
|
31866
|
-
"line":
|
|
32615
|
+
"line": 18
|
|
31867
32616
|
},
|
|
31868
32617
|
"name": "PublisherOptions",
|
|
31869
32618
|
"namespace": "release",
|
|
@@ -31879,7 +32628,7 @@
|
|
|
31879
32628
|
"immutable": true,
|
|
31880
32629
|
"locationInModule": {
|
|
31881
32630
|
"filename": "src/release/publisher.ts",
|
|
31882
|
-
"line":
|
|
32631
|
+
"line": 40
|
|
31883
32632
|
},
|
|
31884
32633
|
"name": "artifactName",
|
|
31885
32634
|
"type": {
|
|
@@ -31896,7 +32645,7 @@
|
|
|
31896
32645
|
"immutable": true,
|
|
31897
32646
|
"locationInModule": {
|
|
31898
32647
|
"filename": "src/release/publisher.ts",
|
|
31899
|
-
"line":
|
|
32648
|
+
"line": 22
|
|
31900
32649
|
},
|
|
31901
32650
|
"name": "buildJobId",
|
|
31902
32651
|
"type": {
|
|
@@ -31913,7 +32662,7 @@
|
|
|
31913
32662
|
"immutable": true,
|
|
31914
32663
|
"locationInModule": {
|
|
31915
32664
|
"filename": "src/release/publisher.ts",
|
|
31916
|
-
"line":
|
|
32665
|
+
"line": 29
|
|
31917
32666
|
},
|
|
31918
32667
|
"name": "condition",
|
|
31919
32668
|
"optional": true,
|
|
@@ -31921,6 +32670,24 @@
|
|
|
31921
32670
|
"primitive": "string"
|
|
31922
32671
|
}
|
|
31923
32672
|
},
|
|
32673
|
+
{
|
|
32674
|
+
"abstract": true,
|
|
32675
|
+
"docs": {
|
|
32676
|
+
"remarks": "Useful if you wish to block all publishing from a single option.",
|
|
32677
|
+
"stability": "experimental",
|
|
32678
|
+
"summary": "Do not actually publish, only print the commands that would be executed instead."
|
|
32679
|
+
},
|
|
32680
|
+
"immutable": true,
|
|
32681
|
+
"locationInModule": {
|
|
32682
|
+
"filename": "src/release/publisher.ts",
|
|
32683
|
+
"line": 85
|
|
32684
|
+
},
|
|
32685
|
+
"name": "dryRun",
|
|
32686
|
+
"optional": true,
|
|
32687
|
+
"type": {
|
|
32688
|
+
"primitive": "boolean"
|
|
32689
|
+
}
|
|
32690
|
+
},
|
|
31924
32691
|
{
|
|
31925
32692
|
"abstract": true,
|
|
31926
32693
|
"docs": {
|
|
@@ -31931,7 +32698,7 @@
|
|
|
31931
32698
|
"immutable": true,
|
|
31932
32699
|
"locationInModule": {
|
|
31933
32700
|
"filename": "src/release/publisher.ts",
|
|
31934
|
-
"line":
|
|
32701
|
+
"line": 54
|
|
31935
32702
|
},
|
|
31936
32703
|
"name": "failureIssue",
|
|
31937
32704
|
"optional": true,
|
|
@@ -31950,7 +32717,7 @@
|
|
|
31950
32717
|
"immutable": true,
|
|
31951
32718
|
"locationInModule": {
|
|
31952
32719
|
"filename": "src/release/publisher.ts",
|
|
31953
|
-
"line":
|
|
32720
|
+
"line": 62
|
|
31954
32721
|
},
|
|
31955
32722
|
"name": "failureIssueLabel",
|
|
31956
32723
|
"optional": true,
|
|
@@ -31968,7 +32735,7 @@
|
|
|
31968
32735
|
"immutable": true,
|
|
31969
32736
|
"locationInModule": {
|
|
31970
32737
|
"filename": "src/release/publisher.ts",
|
|
31971
|
-
"line":
|
|
32738
|
+
"line": 47
|
|
31972
32739
|
},
|
|
31973
32740
|
"name": "jsiiReleaseVersion",
|
|
31974
32741
|
"optional": true,
|
|
@@ -31987,7 +32754,7 @@
|
|
|
31987
32754
|
"immutable": true,
|
|
31988
32755
|
"locationInModule": {
|
|
31989
32756
|
"filename": "src/release/publisher.ts",
|
|
31990
|
-
"line":
|
|
32757
|
+
"line": 78
|
|
31991
32758
|
},
|
|
31992
32759
|
"name": "publishTasks",
|
|
31993
32760
|
"optional": true,
|
|
@@ -32005,7 +32772,7 @@
|
|
|
32005
32772
|
"immutable": true,
|
|
32006
32773
|
"locationInModule": {
|
|
32007
32774
|
"filename": "src/release/publisher.ts",
|
|
32008
|
-
"line":
|
|
32775
|
+
"line": 68
|
|
32009
32776
|
},
|
|
32010
32777
|
"name": "workflowRunsOn",
|
|
32011
32778
|
"optional": true,
|
|
@@ -32029,10 +32796,13 @@
|
|
|
32029
32796
|
"summary": "Options for PyPI release."
|
|
32030
32797
|
},
|
|
32031
32798
|
"fqn": "projen.release.PyPiPublishOptions",
|
|
32799
|
+
"interfaces": [
|
|
32800
|
+
"projen.release.CommonPublishOptions"
|
|
32801
|
+
],
|
|
32032
32802
|
"kind": "interface",
|
|
32033
32803
|
"locationInModule": {
|
|
32034
32804
|
"filename": "src/release/publisher.ts",
|
|
32035
|
-
"line":
|
|
32805
|
+
"line": 636
|
|
32036
32806
|
},
|
|
32037
32807
|
"name": "PyPiPublishOptions",
|
|
32038
32808
|
"namespace": "release",
|
|
@@ -32047,7 +32817,7 @@
|
|
|
32047
32817
|
"immutable": true,
|
|
32048
32818
|
"locationInModule": {
|
|
32049
32819
|
"filename": "src/release/publisher.ts",
|
|
32050
|
-
"line":
|
|
32820
|
+
"line": 654
|
|
32051
32821
|
},
|
|
32052
32822
|
"name": "twinePasswordSecret",
|
|
32053
32823
|
"optional": true,
|
|
@@ -32065,7 +32835,7 @@
|
|
|
32065
32835
|
"immutable": true,
|
|
32066
32836
|
"locationInModule": {
|
|
32067
32837
|
"filename": "src/release/publisher.ts",
|
|
32068
|
-
"line":
|
|
32838
|
+
"line": 642
|
|
32069
32839
|
},
|
|
32070
32840
|
"name": "twineRegistryUrl",
|
|
32071
32841
|
"optional": true,
|
|
@@ -32083,7 +32853,7 @@
|
|
|
32083
32853
|
"immutable": true,
|
|
32084
32854
|
"locationInModule": {
|
|
32085
32855
|
"filename": "src/release/publisher.ts",
|
|
32086
|
-
"line":
|
|
32856
|
+
"line": 648
|
|
32087
32857
|
},
|
|
32088
32858
|
"name": "twineUsernameSecret",
|
|
32089
32859
|
"optional": true,
|
|
@@ -32109,7 +32879,7 @@
|
|
|
32109
32879
|
},
|
|
32110
32880
|
"locationInModule": {
|
|
32111
32881
|
"filename": "src/release/release.ts",
|
|
32112
|
-
"line":
|
|
32882
|
+
"line": 258
|
|
32113
32883
|
},
|
|
32114
32884
|
"parameters": [
|
|
32115
32885
|
{
|
|
@@ -32129,7 +32899,7 @@
|
|
|
32129
32899
|
"kind": "class",
|
|
32130
32900
|
"locationInModule": {
|
|
32131
32901
|
"filename": "src/release/release.ts",
|
|
32132
|
-
"line":
|
|
32902
|
+
"line": 233
|
|
32133
32903
|
},
|
|
32134
32904
|
"methods": [
|
|
32135
32905
|
{
|
|
@@ -32140,7 +32910,7 @@
|
|
|
32140
32910
|
},
|
|
32141
32911
|
"locationInModule": {
|
|
32142
32912
|
"filename": "src/release/release.ts",
|
|
32143
|
-
"line":
|
|
32913
|
+
"line": 341
|
|
32144
32914
|
},
|
|
32145
32915
|
"name": "addBranch",
|
|
32146
32916
|
"parameters": [
|
|
@@ -32171,7 +32941,7 @@
|
|
|
32171
32941
|
},
|
|
32172
32942
|
"locationInModule": {
|
|
32173
32943
|
"filename": "src/release/release.ts",
|
|
32174
|
-
"line":
|
|
32944
|
+
"line": 392
|
|
32175
32945
|
},
|
|
32176
32946
|
"name": "addJobs",
|
|
32177
32947
|
"parameters": [
|
|
@@ -32198,7 +32968,7 @@
|
|
|
32198
32968
|
},
|
|
32199
32969
|
"locationInModule": {
|
|
32200
32970
|
"filename": "src/release/release.ts",
|
|
32201
|
-
"line":
|
|
32971
|
+
"line": 377
|
|
32202
32972
|
},
|
|
32203
32973
|
"name": "preSynthesize",
|
|
32204
32974
|
"overrides": "projen.Component"
|
|
@@ -32207,6 +32977,21 @@
|
|
|
32207
32977
|
"name": "Release",
|
|
32208
32978
|
"namespace": "release",
|
|
32209
32979
|
"properties": [
|
|
32980
|
+
{
|
|
32981
|
+
"docs": {
|
|
32982
|
+
"stability": "experimental",
|
|
32983
|
+
"summary": "Location of build artifacts."
|
|
32984
|
+
},
|
|
32985
|
+
"immutable": true,
|
|
32986
|
+
"locationInModule": {
|
|
32987
|
+
"filename": "src/release/release.ts",
|
|
32988
|
+
"line": 256
|
|
32989
|
+
},
|
|
32990
|
+
"name": "artifactsDirectory",
|
|
32991
|
+
"type": {
|
|
32992
|
+
"primitive": "string"
|
|
32993
|
+
}
|
|
32994
|
+
},
|
|
32210
32995
|
{
|
|
32211
32996
|
"docs": {
|
|
32212
32997
|
"stability": "experimental",
|
|
@@ -32215,7 +33000,7 @@
|
|
|
32215
33000
|
"immutable": true,
|
|
32216
33001
|
"locationInModule": {
|
|
32217
33002
|
"filename": "src/release/release.ts",
|
|
32218
|
-
"line":
|
|
33003
|
+
"line": 401
|
|
32219
33004
|
},
|
|
32220
33005
|
"name": "branches",
|
|
32221
33006
|
"type": {
|
|
@@ -32235,7 +33020,7 @@
|
|
|
32235
33020
|
"immutable": true,
|
|
32236
33021
|
"locationInModule": {
|
|
32237
33022
|
"filename": "src/release/release.ts",
|
|
32238
|
-
"line":
|
|
33023
|
+
"line": 237
|
|
32239
33024
|
},
|
|
32240
33025
|
"name": "publisher",
|
|
32241
33026
|
"type": {
|
|
@@ -32264,6 +33049,23 @@
|
|
|
32264
33049
|
"name": "ReleaseOptions",
|
|
32265
33050
|
"namespace": "release",
|
|
32266
33051
|
"properties": [
|
|
33052
|
+
{
|
|
33053
|
+
"abstract": true,
|
|
33054
|
+
"docs": {
|
|
33055
|
+
"default": "\"dist\"",
|
|
33056
|
+
"stability": "experimental",
|
|
33057
|
+
"summary": "A directory which will contain build artifacts."
|
|
33058
|
+
},
|
|
33059
|
+
"immutable": true,
|
|
33060
|
+
"locationInModule": {
|
|
33061
|
+
"filename": "src/release/release.ts",
|
|
33062
|
+
"line": 224
|
|
33063
|
+
},
|
|
33064
|
+
"name": "artifactsDirectory",
|
|
33065
|
+
"type": {
|
|
33066
|
+
"primitive": "string"
|
|
33067
|
+
}
|
|
33068
|
+
},
|
|
32267
33069
|
{
|
|
32268
33070
|
"abstract": true,
|
|
32269
33071
|
"docs": {
|
|
@@ -32362,7 +33164,7 @@
|
|
|
32362
33164
|
"immutable": true,
|
|
32363
33165
|
"locationInModule": {
|
|
32364
33166
|
"filename": "src/release/release.ts",
|
|
32365
|
-
"line":
|
|
33167
|
+
"line": 72
|
|
32366
33168
|
},
|
|
32367
33169
|
"name": "antitamper",
|
|
32368
33170
|
"optional": true,
|
|
@@ -32370,24 +33172,6 @@
|
|
|
32370
33172
|
"primitive": "boolean"
|
|
32371
33173
|
}
|
|
32372
33174
|
},
|
|
32373
|
-
{
|
|
32374
|
-
"abstract": true,
|
|
32375
|
-
"docs": {
|
|
32376
|
-
"default": "\"dist\"",
|
|
32377
|
-
"stability": "experimental",
|
|
32378
|
-
"summary": "A directory which will contain artifacts to be published to npm."
|
|
32379
|
-
},
|
|
32380
|
-
"immutable": true,
|
|
32381
|
-
"locationInModule": {
|
|
32382
|
-
"filename": "src/release/release.ts",
|
|
32383
|
-
"line": 48
|
|
32384
|
-
},
|
|
32385
|
-
"name": "artifactsDirectory",
|
|
32386
|
-
"optional": true,
|
|
32387
|
-
"type": {
|
|
32388
|
-
"primitive": "string"
|
|
32389
|
-
}
|
|
32390
|
-
},
|
|
32391
33175
|
{
|
|
32392
33176
|
"abstract": true,
|
|
32393
33177
|
"docs": {
|
|
@@ -32398,7 +33182,7 @@
|
|
|
32398
33182
|
"immutable": true,
|
|
32399
33183
|
"locationInModule": {
|
|
32400
33184
|
"filename": "src/release/release.ts",
|
|
32401
|
-
"line":
|
|
33185
|
+
"line": 60
|
|
32402
33186
|
},
|
|
32403
33187
|
"name": "jsiiReleaseVersion",
|
|
32404
33188
|
"optional": true,
|
|
@@ -32417,7 +33201,7 @@
|
|
|
32417
33201
|
"immutable": true,
|
|
32418
33202
|
"locationInModule": {
|
|
32419
33203
|
"filename": "src/release/release.ts",
|
|
32420
|
-
"line":
|
|
33204
|
+
"line": 82
|
|
32421
33205
|
},
|
|
32422
33206
|
"name": "majorVersion",
|
|
32423
33207
|
"optional": true,
|
|
@@ -32436,7 +33220,7 @@
|
|
|
32436
33220
|
"immutable": true,
|
|
32437
33221
|
"locationInModule": {
|
|
32438
33222
|
"filename": "src/release/release.ts",
|
|
32439
|
-
"line":
|
|
33223
|
+
"line": 100
|
|
32440
33224
|
},
|
|
32441
33225
|
"name": "npmDistTag",
|
|
32442
33226
|
"optional": true,
|
|
@@ -32454,7 +33238,7 @@
|
|
|
32454
33238
|
"immutable": true,
|
|
32455
33239
|
"locationInModule": {
|
|
32456
33240
|
"filename": "src/release/release.ts",
|
|
32457
|
-
"line":
|
|
33241
|
+
"line": 66
|
|
32458
33242
|
},
|
|
32459
33243
|
"name": "postBuildSteps",
|
|
32460
33244
|
"optional": true,
|
|
@@ -32477,7 +33261,7 @@
|
|
|
32477
33261
|
"immutable": true,
|
|
32478
33262
|
"locationInModule": {
|
|
32479
33263
|
"filename": "src/release/release.ts",
|
|
32480
|
-
"line":
|
|
33264
|
+
"line": 90
|
|
32481
33265
|
},
|
|
32482
33266
|
"name": "prerelease",
|
|
32483
33267
|
"optional": true,
|
|
@@ -32485,6 +33269,24 @@
|
|
|
32485
33269
|
"primitive": "string"
|
|
32486
33270
|
}
|
|
32487
33271
|
},
|
|
33272
|
+
{
|
|
33273
|
+
"abstract": true,
|
|
33274
|
+
"docs": {
|
|
33275
|
+
"default": "false",
|
|
33276
|
+
"stability": "experimental",
|
|
33277
|
+
"summary": "Instead of actually publishing to package managers, just print the publishing command."
|
|
33278
|
+
},
|
|
33279
|
+
"immutable": true,
|
|
33280
|
+
"locationInModule": {
|
|
33281
|
+
"filename": "src/release/release.ts",
|
|
33282
|
+
"line": 180
|
|
33283
|
+
},
|
|
33284
|
+
"name": "publishDryRun",
|
|
33285
|
+
"optional": true,
|
|
33286
|
+
"type": {
|
|
33287
|
+
"primitive": "boolean"
|
|
33288
|
+
}
|
|
33289
|
+
},
|
|
32488
33290
|
{
|
|
32489
33291
|
"abstract": true,
|
|
32490
33292
|
"docs": {
|
|
@@ -32496,7 +33298,7 @@
|
|
|
32496
33298
|
"immutable": true,
|
|
32497
33299
|
"locationInModule": {
|
|
32498
33300
|
"filename": "src/release/release.ts",
|
|
32499
|
-
"line":
|
|
33301
|
+
"line": 173
|
|
32500
33302
|
},
|
|
32501
33303
|
"name": "publishTasks",
|
|
32502
33304
|
"optional": true,
|
|
@@ -32515,7 +33317,7 @@
|
|
|
32515
33317
|
"immutable": true,
|
|
32516
33318
|
"locationInModule": {
|
|
32517
33319
|
"filename": "src/release/release.ts",
|
|
32518
|
-
"line":
|
|
33320
|
+
"line": 120
|
|
32519
33321
|
},
|
|
32520
33322
|
"name": "releaseBranches",
|
|
32521
33323
|
"optional": true,
|
|
@@ -32557,7 +33359,7 @@
|
|
|
32557
33359
|
"immutable": true,
|
|
32558
33360
|
"locationInModule": {
|
|
32559
33361
|
"filename": "src/release/release.ts",
|
|
32560
|
-
"line":
|
|
33362
|
+
"line": 127
|
|
32561
33363
|
},
|
|
32562
33364
|
"name": "releaseFailureIssue",
|
|
32563
33365
|
"optional": true,
|
|
@@ -32576,7 +33378,7 @@
|
|
|
32576
33378
|
"immutable": true,
|
|
32577
33379
|
"locationInModule": {
|
|
32578
33380
|
"filename": "src/release/release.ts",
|
|
32579
|
-
"line":
|
|
33381
|
+
"line": 135
|
|
32580
33382
|
},
|
|
32581
33383
|
"name": "releaseFailureIssueLabel",
|
|
32582
33384
|
"optional": true,
|
|
@@ -32614,7 +33416,7 @@
|
|
|
32614
33416
|
"immutable": true,
|
|
32615
33417
|
"locationInModule": {
|
|
32616
33418
|
"filename": "src/release/release.ts",
|
|
32617
|
-
"line":
|
|
33419
|
+
"line": 149
|
|
32618
33420
|
},
|
|
32619
33421
|
"name": "releaseTagPrefix",
|
|
32620
33422
|
"optional": true,
|
|
@@ -32650,7 +33452,7 @@
|
|
|
32650
33452
|
"immutable": true,
|
|
32651
33453
|
"locationInModule": {
|
|
32652
33454
|
"filename": "src/release/release.ts",
|
|
32653
|
-
"line":
|
|
33455
|
+
"line": 107
|
|
32654
33456
|
},
|
|
32655
33457
|
"name": "releaseWorkflowName",
|
|
32656
33458
|
"optional": true,
|
|
@@ -32667,7 +33469,7 @@
|
|
|
32667
33469
|
"immutable": true,
|
|
32668
33470
|
"locationInModule": {
|
|
32669
33471
|
"filename": "src/release/release.ts",
|
|
32670
|
-
"line":
|
|
33472
|
+
"line": 47
|
|
32671
33473
|
},
|
|
32672
33474
|
"name": "releaseWorkflowSetupSteps",
|
|
32673
33475
|
"optional": true,
|
|
@@ -32691,7 +33493,7 @@
|
|
|
32691
33493
|
"immutable": true,
|
|
32692
33494
|
"locationInModule": {
|
|
32693
33495
|
"filename": "src/release/release.ts",
|
|
32694
|
-
"line":
|
|
33496
|
+
"line": 157
|
|
32695
33497
|
},
|
|
32696
33498
|
"name": "versionrcOptions",
|
|
32697
33499
|
"optional": true,
|
|
@@ -32714,7 +33516,7 @@
|
|
|
32714
33516
|
"immutable": true,
|
|
32715
33517
|
"locationInModule": {
|
|
32716
33518
|
"filename": "src/release/release.ts",
|
|
32717
|
-
"line":
|
|
33519
|
+
"line": 54
|
|
32718
33520
|
},
|
|
32719
33521
|
"name": "workflowContainerImage",
|
|
32720
33522
|
"optional": true,
|
|
@@ -32732,7 +33534,7 @@
|
|
|
32732
33534
|
"immutable": true,
|
|
32733
33535
|
"locationInModule": {
|
|
32734
33536
|
"filename": "src/release/release.ts",
|
|
32735
|
-
"line":
|
|
33537
|
+
"line": 163
|
|
32736
33538
|
},
|
|
32737
33539
|
"name": "workflowRunsOn",
|
|
32738
33540
|
"optional": true,
|
|
@@ -33075,7 +33877,7 @@
|
|
|
33075
33877
|
},
|
|
33076
33878
|
"locationInModule": {
|
|
33077
33879
|
"filename": "src/typescript/typescript.ts",
|
|
33078
|
-
"line":
|
|
33880
|
+
"line": 411
|
|
33079
33881
|
},
|
|
33080
33882
|
"parameters": [
|
|
33081
33883
|
{
|
|
@@ -33089,7 +33891,7 @@
|
|
|
33089
33891
|
"kind": "class",
|
|
33090
33892
|
"locationInModule": {
|
|
33091
33893
|
"filename": "src/typescript/typescript.ts",
|
|
33092
|
-
"line":
|
|
33894
|
+
"line": 410
|
|
33093
33895
|
},
|
|
33094
33896
|
"name": "TypeScriptAppProject",
|
|
33095
33897
|
"namespace": "typescript",
|
|
@@ -33109,7 +33911,7 @@
|
|
|
33109
33911
|
},
|
|
33110
33912
|
"locationInModule": {
|
|
33111
33913
|
"filename": "src/typescript/typescript.ts",
|
|
33112
|
-
"line":
|
|
33914
|
+
"line": 163
|
|
33113
33915
|
},
|
|
33114
33916
|
"parameters": [
|
|
33115
33917
|
{
|
|
@@ -33123,7 +33925,7 @@
|
|
|
33123
33925
|
"kind": "class",
|
|
33124
33926
|
"locationInModule": {
|
|
33125
33927
|
"filename": "src/typescript/typescript.ts",
|
|
33126
|
-
"line":
|
|
33928
|
+
"line": 425
|
|
33127
33929
|
},
|
|
33128
33930
|
"name": "TypeScriptLibraryProject",
|
|
33129
33931
|
"namespace": "typescript",
|
|
@@ -33143,7 +33945,7 @@
|
|
|
33143
33945
|
"kind": "interface",
|
|
33144
33946
|
"locationInModule": {
|
|
33145
33947
|
"filename": "src/typescript/typescript.ts",
|
|
33146
|
-
"line":
|
|
33948
|
+
"line": 431
|
|
33147
33949
|
},
|
|
33148
33950
|
"name": "TypeScriptLibraryProjectOptions",
|
|
33149
33951
|
"namespace": "typescript",
|
|
@@ -33166,7 +33968,7 @@
|
|
|
33166
33968
|
},
|
|
33167
33969
|
"locationInModule": {
|
|
33168
33970
|
"filename": "src/typescript/typescript.ts",
|
|
33169
|
-
"line":
|
|
33971
|
+
"line": 163
|
|
33170
33972
|
},
|
|
33171
33973
|
"parameters": [
|
|
33172
33974
|
{
|
|
@@ -33180,7 +33982,7 @@
|
|
|
33180
33982
|
"kind": "class",
|
|
33181
33983
|
"locationInModule": {
|
|
33182
33984
|
"filename": "src/typescript/typescript.ts",
|
|
33183
|
-
"line":
|
|
33985
|
+
"line": 131
|
|
33184
33986
|
},
|
|
33185
33987
|
"name": "TypeScriptProject",
|
|
33186
33988
|
"namespace": "typescript",
|
|
@@ -33192,7 +33994,7 @@
|
|
|
33192
33994
|
"immutable": true,
|
|
33193
33995
|
"locationInModule": {
|
|
33194
33996
|
"filename": "src/typescript/typescript.ts",
|
|
33195
|
-
"line":
|
|
33997
|
+
"line": 133
|
|
33196
33998
|
},
|
|
33197
33999
|
"name": "docsDirectory",
|
|
33198
34000
|
"type": {
|
|
@@ -33207,7 +34009,7 @@
|
|
|
33207
34009
|
"immutable": true,
|
|
33208
34010
|
"locationInModule": {
|
|
33209
34011
|
"filename": "src/typescript/typescript.ts",
|
|
33210
|
-
"line":
|
|
34012
|
+
"line": 151
|
|
33211
34013
|
},
|
|
33212
34014
|
"name": "libdir",
|
|
33213
34015
|
"type": {
|
|
@@ -33222,7 +34024,7 @@
|
|
|
33222
34024
|
"immutable": true,
|
|
33223
34025
|
"locationInModule": {
|
|
33224
34026
|
"filename": "src/typescript/typescript.ts",
|
|
33225
|
-
"line":
|
|
34027
|
+
"line": 146
|
|
33226
34028
|
},
|
|
33227
34029
|
"name": "srcdir",
|
|
33228
34030
|
"type": {
|
|
@@ -33237,7 +34039,7 @@
|
|
|
33237
34039
|
"immutable": true,
|
|
33238
34040
|
"locationInModule": {
|
|
33239
34041
|
"filename": "src/typescript/typescript.ts",
|
|
33240
|
-
"line":
|
|
34042
|
+
"line": 156
|
|
33241
34043
|
},
|
|
33242
34044
|
"name": "testdir",
|
|
33243
34045
|
"type": {
|
|
@@ -33252,7 +34054,7 @@
|
|
|
33252
34054
|
"immutable": true,
|
|
33253
34055
|
"locationInModule": {
|
|
33254
34056
|
"filename": "src/typescript/typescript.ts",
|
|
33255
|
-
"line":
|
|
34057
|
+
"line": 141
|
|
33256
34058
|
},
|
|
33257
34059
|
"name": "tsconfigDev",
|
|
33258
34060
|
"type": {
|
|
@@ -33267,7 +34069,7 @@
|
|
|
33267
34069
|
"immutable": true,
|
|
33268
34070
|
"locationInModule": {
|
|
33269
34071
|
"filename": "src/typescript/typescript.ts",
|
|
33270
|
-
"line":
|
|
34072
|
+
"line": 161
|
|
33271
34073
|
},
|
|
33272
34074
|
"name": "watchTask",
|
|
33273
34075
|
"type": {
|
|
@@ -33281,7 +34083,7 @@
|
|
|
33281
34083
|
"immutable": true,
|
|
33282
34084
|
"locationInModule": {
|
|
33283
34085
|
"filename": "src/typescript/typescript.ts",
|
|
33284
|
-
"line":
|
|
34086
|
+
"line": 132
|
|
33285
34087
|
},
|
|
33286
34088
|
"name": "docgen",
|
|
33287
34089
|
"optional": true,
|
|
@@ -33296,7 +34098,7 @@
|
|
|
33296
34098
|
"immutable": true,
|
|
33297
34099
|
"locationInModule": {
|
|
33298
34100
|
"filename": "src/typescript/typescript.ts",
|
|
33299
|
-
"line":
|
|
34101
|
+
"line": 134
|
|
33300
34102
|
},
|
|
33301
34103
|
"name": "eslint",
|
|
33302
34104
|
"optional": true,
|
|
@@ -33311,7 +34113,7 @@
|
|
|
33311
34113
|
"immutable": true,
|
|
33312
34114
|
"locationInModule": {
|
|
33313
34115
|
"filename": "src/typescript/typescript.ts",
|
|
33314
|
-
"line":
|
|
34116
|
+
"line": 136
|
|
33315
34117
|
},
|
|
33316
34118
|
"name": "tsconfig",
|
|
33317
34119
|
"optional": true,
|
|
@@ -33326,7 +34128,7 @@
|
|
|
33326
34128
|
"immutable": true,
|
|
33327
34129
|
"locationInModule": {
|
|
33328
34130
|
"filename": "src/typescript/typescript.ts",
|
|
33329
|
-
"line":
|
|
34131
|
+
"line": 135
|
|
33330
34132
|
},
|
|
33331
34133
|
"name": "tsconfigEslint",
|
|
33332
34134
|
"optional": true,
|
|
@@ -33481,24 +34283,6 @@
|
|
|
33481
34283
|
"primitive": "string"
|
|
33482
34284
|
}
|
|
33483
34285
|
},
|
|
33484
|
-
{
|
|
33485
|
-
"abstract": true,
|
|
33486
|
-
"docs": {
|
|
33487
|
-
"default": "true",
|
|
33488
|
-
"stability": "experimental",
|
|
33489
|
-
"summary": "Defines a `yarn package` command that will produce a tarball and place it under `dist/js`."
|
|
33490
|
-
},
|
|
33491
|
-
"immutable": true,
|
|
33492
|
-
"locationInModule": {
|
|
33493
|
-
"filename": "src/typescript/typescript.ts",
|
|
33494
|
-
"line": 120
|
|
33495
|
-
},
|
|
33496
|
-
"name": "package",
|
|
33497
|
-
"optional": true,
|
|
33498
|
-
"type": {
|
|
33499
|
-
"primitive": "boolean"
|
|
33500
|
-
}
|
|
33501
|
-
},
|
|
33502
34286
|
{
|
|
33503
34287
|
"abstract": true,
|
|
33504
34288
|
"docs": {
|
|
@@ -33509,7 +34293,7 @@
|
|
|
33509
34293
|
"immutable": true,
|
|
33510
34294
|
"locationInModule": {
|
|
33511
34295
|
"filename": "src/typescript/typescript.ts",
|
|
33512
|
-
"line":
|
|
34296
|
+
"line": 119
|
|
33513
34297
|
},
|
|
33514
34298
|
"name": "projenrcTs",
|
|
33515
34299
|
"optional": true,
|
|
@@ -33526,7 +34310,7 @@
|
|
|
33526
34310
|
"immutable": true,
|
|
33527
34311
|
"locationInModule": {
|
|
33528
34312
|
"filename": "src/typescript/typescript.ts",
|
|
33529
|
-
"line":
|
|
34313
|
+
"line": 124
|
|
33530
34314
|
},
|
|
33531
34315
|
"name": "projenrcTsOptions",
|
|
33532
34316
|
"optional": true,
|
|
@@ -35248,7 +36032,7 @@
|
|
|
35248
36032
|
},
|
|
35249
36033
|
"locationInModule": {
|
|
35250
36034
|
"filename": "src/web/react.ts",
|
|
35251
|
-
"line":
|
|
36035
|
+
"line": 468
|
|
35252
36036
|
},
|
|
35253
36037
|
"parameters": [
|
|
35254
36038
|
{
|
|
@@ -35275,7 +36059,7 @@
|
|
|
35275
36059
|
"kind": "class",
|
|
35276
36060
|
"locationInModule": {
|
|
35277
36061
|
"filename": "src/web/react.ts",
|
|
35278
|
-
"line":
|
|
36062
|
+
"line": 467
|
|
35279
36063
|
},
|
|
35280
36064
|
"methods": [
|
|
35281
36065
|
{
|
|
@@ -35285,7 +36069,7 @@
|
|
|
35285
36069
|
},
|
|
35286
36070
|
"locationInModule": {
|
|
35287
36071
|
"filename": "src/web/react.ts",
|
|
35288
|
-
"line":
|
|
36072
|
+
"line": 472
|
|
35289
36073
|
},
|
|
35290
36074
|
"name": "synthesizeContent",
|
|
35291
36075
|
"overrides": "projen.FileBase",
|
|
@@ -35323,7 +36107,7 @@
|
|
|
35323
36107
|
"kind": "interface",
|
|
35324
36108
|
"locationInModule": {
|
|
35325
36109
|
"filename": "src/web/react.ts",
|
|
35326
|
-
"line":
|
|
36110
|
+
"line": 465
|
|
35327
36111
|
},
|
|
35328
36112
|
"name": "ReactTypeDefOptions",
|
|
35329
36113
|
"namespace": "web",
|
|
@@ -35527,6 +36311,6 @@
|
|
|
35527
36311
|
"symbolId": "src/web/tailwind:TailwindConfigOptions"
|
|
35528
36312
|
}
|
|
35529
36313
|
},
|
|
35530
|
-
"version": "0.
|
|
35531
|
-
"fingerprint": "
|
|
36314
|
+
"version": "0.46.1",
|
|
36315
|
+
"fingerprint": "UHA8XNIgiQu3HxeSB7/vG3SfMattfhvuHxo38yWZxm4="
|
|
35532
36316
|
}
|