mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-09-03 06:05:04 +09:00
chore: remove ability to publish on npm
This commit is contained in:
Generated
-1
@@ -10,7 +10,6 @@
|
|||||||
/.github/workflows/upgrade-main.yml linguist-generated
|
/.github/workflows/upgrade-main.yml linguist-generated
|
||||||
/.gitignore linguist-generated
|
/.gitignore linguist-generated
|
||||||
/.mergify.yml linguist-generated
|
/.mergify.yml linguist-generated
|
||||||
/.npmignore linguist-generated
|
|
||||||
/.prettierrc.json linguist-generated
|
/.prettierrc.json linguist-generated
|
||||||
/.projen/** linguist-generated
|
/.projen/** linguist-generated
|
||||||
/.projen/deps.json linguist-generated
|
/.projen/deps.json linguist-generated
|
||||||
|
|||||||
Generated
-1
@@ -7,7 +7,6 @@
|
|||||||
!/.github/workflows/pull-request-lint.yml
|
!/.github/workflows/pull-request-lint.yml
|
||||||
!/package.json
|
!/package.json
|
||||||
!/LICENSE
|
!/LICENSE
|
||||||
!/.npmignore
|
|
||||||
logs
|
logs
|
||||||
*.log
|
*.log
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
|
|||||||
-23
@@ -1,23 +0,0 @@
|
|||||||
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
|
||||||
/.projen/
|
|
||||||
/test-reports/
|
|
||||||
junit.xml
|
|
||||||
/coverage/
|
|
||||||
permissions-backup.acl
|
|
||||||
/dist/changelog.md
|
|
||||||
/dist/version.txt
|
|
||||||
/.mergify.yml
|
|
||||||
/test/
|
|
||||||
/tsconfig.dev.json
|
|
||||||
/src/
|
|
||||||
!/build/
|
|
||||||
!/build/**/*.js
|
|
||||||
!/build/**/*.d.ts
|
|
||||||
dist
|
|
||||||
/tsconfig.json
|
|
||||||
/.github/
|
|
||||||
/.vscode/
|
|
||||||
/.idea/
|
|
||||||
/.projenrc.js
|
|
||||||
tsconfig.tsbuildinfo
|
|
||||||
/.eslintrc.json
|
|
||||||
Generated
-1
@@ -9,7 +9,6 @@
|
|||||||
".github/workflows/upgrade-main.yml",
|
".github/workflows/upgrade-main.yml",
|
||||||
".gitignore",
|
".gitignore",
|
||||||
".mergify.yml",
|
".mergify.yml",
|
||||||
".npmignore",
|
|
||||||
".prettierrc.json",
|
".prettierrc.json",
|
||||||
".projen/deps.json",
|
".projen/deps.json",
|
||||||
".projen/files.json",
|
".projen/files.json",
|
||||||
|
|||||||
@@ -115,6 +115,7 @@ const project = new GitHubActionTypeScriptProject({
|
|||||||
codeCov: false,
|
codeCov: false,
|
||||||
libdir: 'build',
|
libdir: 'build',
|
||||||
entrypoint: 'build/index.js',
|
entrypoint: 'build/index.js',
|
||||||
|
npmignoreEnabled: false,
|
||||||
tsconfig: {
|
tsconfig: {
|
||||||
compilerOptions: {
|
compilerOptions: {
|
||||||
declaration: true,
|
declaration: true,
|
||||||
@@ -218,6 +219,8 @@ if (packageJson) {
|
|||||||
packageJson.addOverride('jest.globals', undefined);
|
packageJson.addOverride('jest.globals', undefined);
|
||||||
// The entrypoint property is supposed to manage this but it doesn't work
|
// The entrypoint property is supposed to manage this but it doesn't work
|
||||||
packageJson.addOverride('main', 'build/index.js');
|
packageJson.addOverride('main', 'build/index.js');
|
||||||
|
// We don't want to publish this to NPM.
|
||||||
|
packageJson.addOverride('private', true);
|
||||||
}
|
}
|
||||||
|
|
||||||
project.synth();
|
project.synth();
|
||||||
|
|||||||
Generated
+1
@@ -122,5 +122,6 @@
|
|||||||
"@types/responselike": "1.0.0",
|
"@types/responselike": "1.0.0",
|
||||||
"got": "12.3.1"
|
"got": "12.3.1"
|
||||||
},
|
},
|
||||||
|
"private": true,
|
||||||
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\"."
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user