mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-09 03:17:05 +00:00
chore: move build dir to build, not dist
This commit is contained in:
parent
921a07e77f
commit
a821f1a13e
4 changed files with 7 additions and 6 deletions
1
.gitignore
generated
vendored
1
.gitignore
generated
vendored
|
|
@ -31,6 +31,7 @@ jspm_packages/
|
|||
*.tgz
|
||||
.yarn-integrity
|
||||
.cache
|
||||
build
|
||||
!/.projenrc.js
|
||||
/test-reports/
|
||||
junit.xml
|
||||
|
|
|
|||
|
|
@ -16,6 +16,8 @@ const project = new GitHubActionTypeScriptProject({
|
|||
projenrcJsOptions: {
|
||||
filename: '.projenrc.cjs',
|
||||
},
|
||||
sampleCode: false,
|
||||
gitignore: ['build'],
|
||||
actionMetadata: {
|
||||
name: '"Configure AWS Credentials" Action for GitHub Actions',
|
||||
description: 'Configures AWS credentials for use in subsequent steps in a GitHub Action workflow',
|
||||
|
|
|
|||
5
tsconfig.dev.json
generated
5
tsconfig.dev.json
generated
|
|
@ -9,7 +9,7 @@
|
|||
"lib": [
|
||||
"es2019"
|
||||
],
|
||||
"module": "Node16",
|
||||
"module": "CommonJS",
|
||||
"noEmitOnError": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitAny": true,
|
||||
|
|
@ -24,8 +24,7 @@
|
|||
"stripInternal": true,
|
||||
"target": "ES2022",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"outDir": "dist",
|
||||
"moduleResolution": "Node16"
|
||||
"outDir": "build"
|
||||
},
|
||||
"include": [
|
||||
".projenrc.js",
|
||||
|
|
|
|||
5
tsconfig.json
generated
5
tsconfig.json
generated
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"rootDir": "src",
|
||||
"outDir": "dist",
|
||||
"outDir": "build",
|
||||
"alwaysStrict": true,
|
||||
"declaration": true,
|
||||
"esModuleInterop": true,
|
||||
|
|
@ -11,7 +11,7 @@
|
|||
"lib": [
|
||||
"es2019"
|
||||
],
|
||||
"module": "Node16",
|
||||
"module": "CommonJS",
|
||||
"noEmitOnError": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitAny": true,
|
||||
|
|
@ -26,7 +26,6 @@
|
|||
"stripInternal": true,
|
||||
"target": "ES2022",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"moduleResolution": "Node16",
|
||||
"allowUnreachableCode": false,
|
||||
"allowUnusedLabels": false,
|
||||
"pretty": true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue