mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-04 06:15:07 +09:00
chore: move build dir to build, not dist
This commit is contained in:
Generated
+1
@@ -31,6 +31,7 @@ jspm_packages/
|
|||||||
*.tgz
|
*.tgz
|
||||||
.yarn-integrity
|
.yarn-integrity
|
||||||
.cache
|
.cache
|
||||||
|
build
|
||||||
!/.projenrc.js
|
!/.projenrc.js
|
||||||
/test-reports/
|
/test-reports/
|
||||||
junit.xml
|
junit.xml
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ const project = new GitHubActionTypeScriptProject({
|
|||||||
projenrcJsOptions: {
|
projenrcJsOptions: {
|
||||||
filename: '.projenrc.cjs',
|
filename: '.projenrc.cjs',
|
||||||
},
|
},
|
||||||
|
sampleCode: false,
|
||||||
|
gitignore: ['build'],
|
||||||
actionMetadata: {
|
actionMetadata: {
|
||||||
name: '"Configure AWS Credentials" Action for GitHub Actions',
|
name: '"Configure AWS Credentials" Action for GitHub Actions',
|
||||||
description: 'Configures AWS credentials for use in subsequent steps in a GitHub Action workflow',
|
description: 'Configures AWS credentials for use in subsequent steps in a GitHub Action workflow',
|
||||||
|
|||||||
Generated
+2
-3
@@ -9,7 +9,7 @@
|
|||||||
"lib": [
|
"lib": [
|
||||||
"es2019"
|
"es2019"
|
||||||
],
|
],
|
||||||
"module": "Node16",
|
"module": "CommonJS",
|
||||||
"noEmitOnError": true,
|
"noEmitOnError": true,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
@@ -24,8 +24,7 @@
|
|||||||
"stripInternal": true,
|
"stripInternal": true,
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"outDir": "dist",
|
"outDir": "build"
|
||||||
"moduleResolution": "Node16"
|
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
".projenrc.js",
|
".projenrc.js",
|
||||||
|
|||||||
Generated
+2
-3
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"rootDir": "src",
|
"rootDir": "src",
|
||||||
"outDir": "dist",
|
"outDir": "build",
|
||||||
"alwaysStrict": true,
|
"alwaysStrict": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
"lib": [
|
"lib": [
|
||||||
"es2019"
|
"es2019"
|
||||||
],
|
],
|
||||||
"module": "Node16",
|
"module": "CommonJS",
|
||||||
"noEmitOnError": true,
|
"noEmitOnError": true,
|
||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
@@ -26,7 +26,6 @@
|
|||||||
"stripInternal": true,
|
"stripInternal": true,
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"moduleResolution": "Node16",
|
|
||||||
"allowUnreachableCode": false,
|
"allowUnreachableCode": false,
|
||||||
"allowUnusedLabels": false,
|
"allowUnusedLabels": false,
|
||||||
"pretty": true
|
"pretty": true
|
||||||
|
|||||||
Reference in New Issue
Block a user