Skip to content

Commit

Permalink
v7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sunesimonsen committed Dec 6, 2022
1 parent 76f80df commit d45b904
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 19 deletions.
6 changes: 2 additions & 4 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"packages": [
"packages/*"
],
"packages": ["packages/*"],
"lerna": "3.19.0",
"version": "7.0.0"
"version": "7.0.1"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/core",
"version": "7.0.0",
"version": "7.0.1",
"description": "Create transformation pipelines",
"main": "./src/index.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions packages/csv/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/csv",
"version": "7.0.0",
"version": "7.0.1",
"description": "Reading and writing CSV files from a transformation pipeline",
"main": "./src/index.js",
"scripts": {
Expand All @@ -18,8 +18,8 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0",
"@transformation/stream": "^7.0.0",
"@transformation/core": "^7.0.1",
"@transformation/stream": "^7.0.1",
"csv-parser": "3.0.0",
"csv-writer": "1.6.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/ejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/ejs",
"version": "7.0.0",
"version": "7.0.1",
"description": "Writing pipeline to files with EJS",
"main": "./src/index.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0",
"@transformation/core": "^7.0.1",
"ejs": "3.1.8"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/file/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/file",
"version": "7.0.0",
"version": "7.0.1",
"description": "Transformations for working with files",
"main": "src/index.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0",
"@transformation/core": "^7.0.1",
"medium": "1.2.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/glob/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/glob",
"version": "7.0.0",
"version": "7.0.1",
"description": "Expand glob patterns in a transformation pipeline",
"main": "./src/index.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0",
"@transformation/core": "^7.0.1",
"globby": "11.0.3"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/process/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/process",
"version": "7.0.0",
"version": "7.0.1",
"description": "Transformations for working with processes",
"main": "src/index.js",
"scripts": {
Expand All @@ -18,8 +18,8 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0",
"@transformation/stream": "^7.0.0",
"@transformation/core": "^7.0.1",
"@transformation/stream": "^7.0.1",
"medium": "1.2.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@transformation/stream",
"version": "7.0.0",
"version": "7.0.1",
"description": "Transformations for working with Node streams",
"main": "src/index.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
"access": "public"
},
"dependencies": {
"@transformation/core": "^7.0.0"
"@transformation/core": "^7.0.1"
},
"devDependencies": {
"byline": "^5.0.0",
Expand Down

0 comments on commit d45b904

Please sign in to comment.