Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
  • Loading branch information
ForbesLindesay committed Apr 18, 2017
1 parent bc92bdc commit ec18ece
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
8 changes: 4 additions & 4 deletions packages/pug-filters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pug-filters",
"version": "2.1.1",
"version": "2.1.2",
"description": "Code for processing filters in pug templates",
"keywords": [
"pug"
Expand All @@ -9,7 +9,7 @@
"clean-css": "^3.3.0",
"constantinople": "^3.0.1",
"pug-error": "^1.3.2",
"pug-walk": "^1.1.1",
"pug-walk": "^1.1.2",
"jstransformer": "1.0.0",
"resolve": "^1.1.6",
"uglify-js": "^2.6.1"
Expand All @@ -22,8 +22,8 @@
"jstransformer-markdown-it": "^1.0.0",
"jstransformer-stylus": "^1.0.0",
"jstransformer-uglify-js": "^1.1.1",
"pug-lexer": "^3.0.0",
"pug-load": "^2.0.5",
"pug-lexer": "^3.1.0",
"pug-load": "^2.0.6",
"pug-parser": "^2.0.2"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pug-lexer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pug-lexer",
"version": "3.0.0",
"version": "3.1.0",
"description": "The pug lexer (takes a string and converts it to an array of tokens)",
"keywords": [
"pug"
Expand Down
8 changes: 4 additions & 4 deletions packages/pug-linker/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "pug-linker",
"version": "2.0.2",
"version": "2.0.3",
"description": "Link multiple pug ASTs together using include/extends",
"keywords": [
"pug"
],
"dependencies": {
"pug-error": "^1.3.2",
"pug-walk": "^1.1.1"
"pug-walk": "^1.1.2"
},
"devDependencies": {
"pug-lexer": "^3.0.0",
"pug-load": "^2.0.5",
"pug-lexer": "^3.1.0",
"pug-load": "^2.0.6",
"pug-parser": "^2.0.2"
},
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions packages/pug-load/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "pug-load",
"version": "2.0.5",
"version": "2.0.6",
"description": "The Pug loader is responsible for loading the depenendencies of a given Pug file.",
"keywords": [
"pug"
],
"dependencies": {
"object-assign": "^4.1.0",
"pug-walk": "^1.1.1"
"pug-walk": "^1.1.2"
},
"devDependencies": {
"pug-lexer": "^3.0.0",
"pug-lexer": "^3.1.0",
"pug-parser": "^2.0.2"
},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions packages/pug-walk/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "pug-walk",
"version": "1.1.1",
"version": "1.1.2",
"description": "Walk and transform a pug AST",
"keywords": [
"pug"
],
"dependencies": {},
"devDependencies": {
"pug-lexer": "^3.0.0",
"pug-lexer": "^3.1.0",
"pug-parser": "^2.0.2"
},
"files": [
Expand Down
10 changes: 5 additions & 5 deletions packages/pug/package.json
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]>",
Expand All @@ -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"
Expand Down

2 comments on commit ec18ece

@qm3ster
Copy link

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.

@ForbesLindesay
Copy link
Member Author

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 and npm install pug both result in 2.0.0-beta.12. The update was made to match the correct semver format. See #2720

Please sign in to comment.