Skip to content

Commit

Permalink
chore(release): 7.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [7.0.0](v6.0.3...v7.0.0) (2021-04-09)

### Bug Fixes

* fixed tsconfig.json ([e91b50a](e91b50a)), closes [#219](#219)

### Features

* bumped minimum node version to 12.0.0 ([d9f4ea4](d9f4ea4))
* updated all of postdfm to use esmodules correctly ([7713eec](7713eec))

### BREAKING CHANGES

* postdfm is now in ESM rather than CommonJS
* bumped minimum node version to 12.0.0
  • Loading branch information
semantic-release-bot committed Apr 9, 2021
1 parent c83aa08 commit 1049405
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.3",
"version": "7.0.0",
"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.3",
"version": "7.0.0",
"description": "Convert DFM Abstract Syntax Trees to a Delphi Form file",
"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.3"
"@postdfm/ast": "^7.0.0"
},
"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.3",
"version": "7.0.0",
"description": "Convert Delphi Form files to an Abstract Syntax Tree",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -17,7 +17,7 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.3",
"@postdfm/ast": "^7.0.0",
"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.3",
"version": "7.0.0",
"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 @@ -16,7 +16,7 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.3",
"@postdfm/ast": "^7.0.0",
"tapable": "^2.2.0"
},
"devDependencies": {
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.3",
"version": "7.0.0",
"description": "Iterates a Delphi Form Abstract Syntax Tree, allowing modification via Hooks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -16,8 +16,8 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast": "^6.0.3",
"@postdfm/plugin": "^6.0.3"
"@postdfm/ast": "^7.0.0",
"@postdfm/plugin": "^7.0.0"
},
"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.3",
"version": "7.0.0",
"description": "Provides an API for easily transforming Delphi Forms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand All @@ -27,10 +27,10 @@
},
"homepage": "https://github.com/spiltcoffee/postdfm#readme",
"dependencies": {
"@postdfm/ast2dfm": "^6.0.3",
"@postdfm/dfm2ast": "^6.0.3",
"@postdfm/plugin": "^6.0.3",
"@postdfm/transform": "^6.0.3"
"@postdfm/ast2dfm": "^7.0.0",
"@postdfm/dfm2ast": "^7.0.0",
"@postdfm/plugin": "^7.0.0",
"@postdfm/transform": "^7.0.0"
},
"files": [
"dist/",
Expand Down

0 comments on commit 1049405

Please sign in to comment.