File tree Expand file tree Collapse file tree 4 files changed +19
-1
lines changed
Expand file tree Collapse file tree 4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 11## 0.2.1
22
3+ ## 0.3.0
4+
5+ ### Minor Changes
6+
7+ - add getAffectedPkg function which return the dependents including direct, transitive and circular dependency
8+
39### Patch Changes
410
511- docs: fix import dag
File renamed without changes.
Original file line number Diff line number Diff line change 1+ import cjs from './index.cjs' ;
2+
3+ export const dag = cjs . dag ;
4+ export const getAffectedPkg = cjs . getAffectedPkg ;
5+
6+ export default cjs ;
Original file line number Diff line number Diff line change 11{
22 "name" : " dag-rs" ,
3- "version" : " 0.2.1 " ,
3+ "version" : " 0.3.0 " ,
44 "description" : " " ,
55 "main" : " lib/index.js" ,
66 "publishConfig" : {
1010 " lib" ,
1111 " *.node"
1212 ],
13+ "exports" : {
14+ "." : {
15+ "require" : " ./lib/index.cjs" ,
16+ "import" : " ./lib/index.mjs"
17+ }
18+ },
1319 "scripts" : {
1420 "test" : " cargo test" ,
1521 "cargo-build" : " cargo build --message-format=json-render-diagnostics > cargo.log" ,
You can’t perform that action at this time.
0 commit comments