-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added CDK V2 support
- Loading branch information
Showing
75 changed files
with
16,702 additions
and
421 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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Helper script used to fix package.json version resetting on builds, and helping bump version.json after releases | ||
|
||
// Copies the version from version.json into package.json | ||
var fs = require("fs"); | ||
var path = require("path"); | ||
|
||
var folder = process.argv[2]; | ||
|
||
version_file_path = path.join(__dirname, "..", "..", folder, "version.json"); | ||
package_file_path = path.join(__dirname, "..", "..", folder, "package.json"); | ||
|
||
var version_json = require(version_file_path); | ||
var package_json = require(package_file_path); | ||
|
||
package_json.version = version_json.version; | ||
fs.writeFileSync(package_file_path, JSON.stringify(package_json, null, 2)); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.