Skip to content

Commit

Permalink
chore(release): 6.0.1 [skip ci]
Browse files Browse the repository at this point in the history
## [6.0.1](v6.0.0...v6.0.1) (2021-03-31)

### Bug Fixes

* package.json to reduce vulnerabilities ([d5f6728](d5f6728))
* updated yarn.lock ([698b0b7](698b0b7))
  • Loading branch information
semantic-release-bot committed Mar 31, 2021
1 parent 2b67d30 commit 960c621
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/@postdfm/ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@postdfm/ast",
"version": "6.0.0",
"version": "6.0.1",
"description": "Abstract Syntax Tree classes for postdfm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/@postdfm/ast2dfm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@postdfm/ast2dfm",
"version": "6.0.0",
"version": "6.0.1",
"description": "Convert DFM Abstract Syntax Trees to a Delphi Form file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,7 +15,7 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.0"
"@postdfm/ast": "^6.0.1"
},
"files": [
"/dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/@postdfm/dfm2ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@postdfm/dfm2ast",
"version": "6.0.0",
"version": "6.0.1",
"description": "Convert Delphi Form files to an Abstract Syntax Tree",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,7 +16,7 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.0",
"@postdfm/ast": "^6.0.1",
"nearley": "^2.19.4"
},
"files": [
Expand Down
4 changes: 2 additions & 2 deletions packages/@postdfm/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@postdfm/plugin",
"version": "6.0.0",
"version": "6.0.1",
"description": "Provides structure and utilities for making plugins that can modify a postdfm AST.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,7 +15,7 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.0",
"@postdfm/ast": "^6.0.1",
"tapable": "^2.2.0"
},
"files": [
Expand Down
6 changes: 3 additions & 3 deletions packages/@postdfm/transform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@postdfm/transform",
"version": "6.0.0",
"version": "6.0.1",
"description": "Iterates a Delphi Form Abstract Syntax Tree, allowing modification via Hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -15,8 +15,8 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.0",
"@postdfm/plugin": "^6.0.0"
"@postdfm/ast": "^6.0.1",
"@postdfm/plugin": "^6.0.1"
},
"files": [
"/dist",
Expand Down
10 changes: 5 additions & 5 deletions packages/postdfm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postdfm",
"version": "6.0.0",
"version": "6.0.1",
"description": "Provides an API for easily transforming Delphi Forms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -26,10 +26,10 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast2dfm": "^6.0.0",
"@postdfm/dfm2ast": "^6.0.0",
"@postdfm/plugin": "^6.0.0",
"@postdfm/transform": "^6.0.0"
"@postdfm/ast2dfm": "^6.0.1",
"@postdfm/dfm2ast": "^6.0.1",
"@postdfm/plugin": "^6.0.1",
"@postdfm/transform": "^6.0.1"
},
"files": [
"dist/",
Expand Down

0 comments on commit 960c621

Please sign in to comment.