This repository has been archived by the owner on Aug 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Ensure correct version in package (#73)
* Fix: Ensure correct version in package * Add comments to lib/version.js * Run build before lint and test scripts * Fix CI script
- Loading branch information
Showing
4 changed files
with
18 additions
and
8 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 |
---|---|---|
|
@@ -9,3 +9,4 @@ npm-debug.log | |
.sublimelinterrc | ||
.eslint-release-info.json | ||
dist | ||
*.tgz |
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,3 +1,12 @@ | ||
const version = "5.1.1"; | ||
/** | ||
* @fileoverview Contains the current version number. This file is checked in | ||
* to source control and should always return "main". During the release | ||
* process, this file is overwritten with a new on that returns the actual | ||
* version number. The file with the actual version number is *not* checked | ||
* back into the repo. This is only necessary until Node.js supports import | ||
* assertions, at which time we can just import package.json for this info. | ||
* @author Nicholas C. Zakas | ||
*/ | ||
const version = "main"; | ||
|
||
export default version; |
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