Skip to content

Commit

Permalink
build(project): wrong peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
julianpoemp committed Nov 23, 2023
1 parent 6cf1264 commit 06adb73
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions libs/annotation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "@octra/annotation",
"version": "0.1.7",
"peerDependencies": {
"@octra/media": "^0.0.11",
"@octra/utilities": "^0.0.3"
"@octra/media": "~0.0.11",
"@octra/utilities": "~0.0.3"
},
"type": "commonjs",
"main": "./index.cjs",
Expand Down
1 change: 1 addition & 0 deletions libs/annotation/rollup.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ module.exports = (config, b) => {
}
},
},
external: ["@octra/media", "@octra/utilities"]
};
};
2 changes: 1 addition & 1 deletion libs/assets/rollup.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = (config, b) => {
return `index.mjs`;
}
},
},
}
};
};
2 changes: 1 addition & 1 deletion libs/json-sets/rollup.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = (config, b) => {
return `index.mjs`;
}
},
},
}
};
};
10 changes: 5 additions & 5 deletions libs/ngx-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"@angular/common": ">15.0.0",
"@angular/core": ">15.0.0",
"@angular/forms": ">15.0.0",
"@octra/utilities": "^0.0.1",
"@octra/annotation": "^0.1.5",
"@octra/media": "^0.0.5",
"@octra/web-media": "^0.0.1",
"@octra/ngx-utilities": "^0.0.1",
"@octra/utilities": "~0.0.1",
"@octra/annotation": "~0.1.5",
"@octra/media": "~0.0.5",
"@octra/web-media": "~0.0.1",
"@octra/ngx-utilities": "~0.0.1",
"konva": "^9.0.0",
"rxjs": ">=7.5.0"
},
Expand Down
4 changes: 2 additions & 2 deletions libs/web-media/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"peerDependencies": {
"rxjs": "^7.6.0",
"platform": "^1.3.6",
"@octra/media": "^0.0.11",
"@octra/utilities": "^0.0.3"
"@octra/media": "~0.0.11",
"@octra/utilities": "~0.0.3"
},
"type": "commonjs",
"main": "./index.cjs",
Expand Down
1 change: 1 addition & 0 deletions libs/web-media/rollup.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ module.exports = (config, b) => {
}
},
},
external: ["@octra/media", "@octra/utilities"]
};
};

0 comments on commit 06adb73

Please sign in to comment.