-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [email protected] - [email protected] - [email protected] - [email protected] - [email protected] - [email protected]
- Loading branch information
1 parent
bc92bdc
commit ec18ece
Showing
6 changed files
with
19 additions
and
19 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "pug", | ||
"description": "A clean, whitespace-sensitive template language for writing HTML", | ||
"version": "2.0.0-beta11", | ||
"version": "2.0.0-beta.12", | ||
"author": "TJ Holowaychuk <[email protected]>", | ||
"maintainers": [ | ||
"Forbes Lindesay <[email protected]>", | ||
|
@@ -21,10 +21,10 @@ | |
"main": "lib", | ||
"dependencies": { | ||
"pug-code-gen": "^1.1.1", | ||
"pug-filters": "^2.1.1", | ||
"pug-lexer": "^3.0.0", | ||
"pug-linker": "^2.0.2", | ||
"pug-load": "^2.0.5", | ||
"pug-filters": "^2.1.2", | ||
"pug-lexer": "^3.1.0", | ||
"pug-linker": "^2.0.3", | ||
"pug-load": "^2.0.6", | ||
"pug-parser": "^2.0.2", | ||
"pug-runtime": "^2.0.3", | ||
"pug-strip-comments": "^1.0.2" | ||
|
ec18ece
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the change from "beta 11" to "beta . 12" intentional?
It's causing yarn to keep reinstalling pug on every update check.
ec18ece
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my brief test,
yarn add pug
andnpm install pug
both result in2.0.0-beta.12
. The update was made to match the correct semver format. See #2720