forked from aws/aws-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: revert "multiple release branches without merge conflicts" (aw…
…s#11287) (aws#11292) * Revert "chore: multiple release branches without merge conflicts (aws#11287)" This reverts commit 85915a4. * Update .gitignore
- Loading branch information
Elad Ben-Israel
authored
Nov 4, 2020
1 parent
85915a4
commit 9859972
Showing
24 changed files
with
102 additions
and
390 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,3 @@ yarn-error.log | |
# Cloud9 | ||
.c9 | ||
|
||
/.versionrc.json |
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,5 @@ | ||
{ | ||
"skip": { "tag": true }, | ||
"packageFiles": [ { "filename": "lerna.json", "type": "json" } ], | ||
"bumpFiles": [ { "filename": "lerna.json", "type": "json" } ] | ||
} |
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
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
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,13 @@ | ||
/** | ||
* Returns the version marker used to indicate this is a local dependency. | ||
* | ||
* Usage: | ||
* | ||
* const version = require('./get-version-marker'); | ||
* | ||
* Or from the command line: | ||
* | ||
* node -p require('./get-version-marker') | ||
* | ||
*/ | ||
module.exports = '0.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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** | ||
* Returns the current repo version. | ||
* | ||
* Usage: | ||
* | ||
* const version = require('./get-version'); | ||
* | ||
* Or from the command line: | ||
* | ||
* node -p require('./get-version') | ||
* | ||
*/ | ||
const versionFile = require('../.versionrc.json').packageFiles[0].filename; | ||
if (!versionFile) { | ||
throw new Error(`unable to determine version filename from .versionrc.json at the root of the repo`); | ||
} | ||
|
||
module.exports = require(`../${versionFile}`).version; |
Oops, something went wrong.