Skip to content

Commit

Permalink
Publish
Browse files Browse the repository at this point in the history
 - pug-attrs@2.0.3
 - pug-code-gen@2.0.1
 - pug-filters@3.0.0
 - pug-lexer@4.0.0
 - pug-linker@3.0.4
 - pug-load@2.0.10
 - pug-parser@4.0.1
 - pug-runtime@2.0.4
 - pug-strip-comments@1.0.3
 - pug-walk@1.1.6
 - pug@2.0.0
  • Loading branch information
ForbesLindesay committed Mar 6, 2018
1 parent 76321eb commit 540cddd
Show file tree
Hide file tree
Showing 11 changed files with 37 additions and 39 deletions.
6 changes: 3 additions & 3 deletions packages/pug-attrs/package.json
@@ -1,14 +1,14 @@
{
"name": "pug-attrs",
"version": "2.0.2",
"version": "2.0.3",
"description": "Generate code for Pug attributes",
"keywords": [
"pug"
],
"dependencies": {
"constantinople": "^3.0.1",
"pug-runtime": "^2.0.3",
"js-stringify": "^1.0.1"
"js-stringify": "^1.0.1",
"pug-runtime": "^2.0.4"
},
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions packages/pug-code-gen/package.json
@@ -1,6 +1,6 @@
{
"name": "pug-code-gen",
"version": "2.0.0",
"version": "2.0.1",
"description": "Default code-generator for pug. It generates HTML via a JavaScript template function.",
"keywords": [
"pug"
Expand All @@ -9,9 +9,9 @@
"constantinople": "^3.0.1",
"doctypes": "^1.1.0",
"js-stringify": "^1.0.1",
"pug-attrs": "^2.0.2",
"pug-attrs": "^2.0.3",
"pug-error": "^1.3.2",
"pug-runtime": "^2.0.3",
"pug-runtime": "^2.0.4",
"void-elements": "^2.0.1",
"with": "^5.0.0"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/pug-filters/package.json
@@ -1,16 +1,16 @@
{
"name": "pug-filters",
"version": "2.1.5",
"version": "3.0.0",
"description": "Code for processing filters in pug templates",
"keywords": [
"pug"
],
"dependencies": {
"clean-css": "^3.3.0",
"constantinople": "^3.0.1",
"pug-error": "^1.3.2",
"pug-walk": "^1.1.5",
"jstransformer": "1.0.0",
"pug-error": "^1.3.2",
"pug-walk": "^1.1.6",
"resolve": "^1.1.6",
"uglify-js": "^2.6.1"
},
Expand All @@ -22,9 +22,9 @@
"jstransformer-markdown-it": "^1.0.0",
"jstransformer-stylus": "^1.0.0",
"jstransformer-uglify-js": "^1.1.1",
"pug-lexer": "^3.1.0",
"pug-load": "^2.0.9",
"pug-parser": "^4.0.0"
"pug-lexer": "^4.0.0",
"pug-load": "^2.0.10",
"pug-parser": "^4.0.1"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/pug-lexer/package.json
@@ -1,6 +1,6 @@
{
"name": "pug-lexer",
"version": "3.1.0",
"version": "4.0.0",
"description": "The pug lexer (takes a string and converts it to an array of tokens)",
"keywords": [
"pug"
Expand Down
10 changes: 5 additions & 5 deletions packages/pug-linker/package.json
@@ -1,18 +1,18 @@
{
"name": "pug-linker",
"version": "3.0.3",
"version": "3.0.4",
"description": "Link multiple pug ASTs together using include/extends",
"keywords": [
"pug"
],
"dependencies": {
"pug-error": "^1.3.2",
"pug-walk": "^1.1.5"
"pug-walk": "^1.1.6"
},
"devDependencies": {
"pug-lexer": "^3.1.0",
"pug-load": "^2.0.9",
"pug-parser": "^4.0.0"
"pug-lexer": "^4.0.0",
"pug-load": "^2.0.10",
"pug-parser": "^4.0.1"
},
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/pug-load/package.json
@@ -1,17 +1,17 @@
{
"name": "pug-load",
"version": "2.0.9",
"version": "2.0.10",
"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.5"
"pug-walk": "^1.1.6"
},
"devDependencies": {
"pug-lexer": "^3.1.0",
"pug-parser": "^4.0.0"
"pug-lexer": "^4.0.0",
"pug-parser": "^4.0.1"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/pug-parser/package.json
@@ -1,6 +1,6 @@
{
"name": "pug-parser",
"version": "4.0.0",
"version": "4.0.1",
"description": "The pug parser (takes an array of tokens and converts it to an abstract syntax tree)",
"keywords": [
"pug"
Expand Down
3 changes: 1 addition & 2 deletions packages/pug-runtime/package.json
@@ -1,11 +1,10 @@
{
"name": "pug-runtime",
"version": "2.0.3",
"version": "2.0.4",
"description": "The runtime components for the pug templating language",
"keywords": [
"pug"
],
"dependencies": {},
"devDependencies": {
"uglify-js": "^2.6.1"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/pug-strip-comments/package.json
@@ -1,6 +1,6 @@
{
"name": "pug-strip-comments",
"version": "1.0.2",
"version": "1.0.3",
"description": "Strip comments from a Pug token stream (from the lexer)",
"keywords": [
"pug"
Expand Down
7 changes: 3 additions & 4 deletions packages/pug-walk/package.json
@@ -1,14 +1,13 @@
{
"name": "pug-walk",
"version": "1.1.5",
"version": "1.1.6",
"description": "Walk and transform a pug AST",
"keywords": [
"pug"
],
"dependencies": {},
"devDependencies": {
"pug-lexer": "^3.1.0",
"pug-parser": "^4.0.0"
"pug-lexer": "^4.0.0",
"pug-parser": "^4.0.1"
},
"files": [
"index.js"
Expand Down
18 changes: 9 additions & 9 deletions packages/pug/package.json
@@ -1,7 +1,7 @@
{
"name": "pug",
"description": "A clean, whitespace-sensitive template language for writing HTML",
"version": "2.0.0-rc.4",
"version": "2.0.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"maintainers": [
"Forbes Lindesay <forbes@lindesay.co.uk>",
Expand All @@ -20,14 +20,14 @@
},
"main": "lib",
"dependencies": {
"pug-code-gen": "^2.0.0",
"pug-filters": "^2.1.5",
"pug-lexer": "^3.1.0",
"pug-linker": "^3.0.3",
"pug-load": "^2.0.9",
"pug-parser": "^4.0.0",
"pug-runtime": "^2.0.3",
"pug-strip-comments": "^1.0.2"
"pug-code-gen": "^2.0.1",
"pug-filters": "^3.0.0",
"pug-lexer": "^4.0.0",
"pug-linker": "^3.0.4",
"pug-load": "^2.0.10",
"pug-parser": "^4.0.1",
"pug-runtime": "^2.0.4",
"pug-strip-comments": "^1.0.3"
},
"devDependencies": {
"jstransformer-cdata": "^1.0.0",
Expand Down

0 comments on commit 540cddd

Please sign in to comment.