-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor cleanup after merging v2 into master (#49)
- Loading branch information
Showing
9 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/script-cjs-ts", | ||
"version": "1.0.0", | ||
"description": "TypeScript CJS test script for Config Dug", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/script-cjs", | ||
"version": "1.0.0", | ||
"description": "CJS test script for Config Dug", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/script-esm-ts", | ||
"version": "1.0.0", | ||
"description": "Test project for config-dug", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"type": "module", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/script-esm", | ||
"version": "1.0.0", | ||
"description": "ESM test script for Config Dug", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"type": "module", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/service-cjs-ts-tsyringe", | ||
"version": "1.0.0", | ||
"description": "TypeScript CJS test service for Config Dug with TSyringe", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"engines": { | ||
"node": ">=18.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"name": "@config-dug/service-esm-ts", | ||
"version": "1.0.0", | ||
"description": "TypeScript ESM test service for Config Dug", | ||
"author": "Ian Sutherland", | ||
"license": "UNLICENSED", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"private": true, | ||
"type": "module", | ||
"engines": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@config-dug/plugin-aws-secrets-manager", | ||
"version": "1.0.0-alpha.0", | ||
"author": "Ian Sutherland <[email protected]>", | ||
"author": "Neo Financial Engineering <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
|
@@ -34,7 +34,8 @@ | |
"scripts": { | ||
"build": "tsc -b tsconfig.cjs.json tsconfig.esm.json tsconfig.types.json", | ||
"watch": "tsc -b tsconfig.cjs.json tsconfig.esm.json tsconfig.types.json --watch", | ||
"clean": "rimraf build" | ||
"clean": "rimraf build", | ||
"prepublishOnly": "npm run clean && npm run build" | ||
}, | ||
"dependencies": { | ||
"@aws-sdk/client-secrets-manager": "^3.350.0", | ||
|