Skip to content

Commit

Permalink
v1.0.0-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
JennieJi committed Jul 14, 2022
1 parent 04ef84d commit 58f2e53
Show file tree
Hide file tree
Showing 13 changed files with 7,696 additions and 20 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"npmClient": "npm",
"command": {
"publish": {
Expand Down
2 changes: 1 addition & 1 deletion packages/es-stats/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions packages/es-stats/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "es-stats",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "Find out import, exports and root declarations' dependency relationships of an ES module file.",
"main": "dist/index.js",
"modules": "dist/index.js",
Expand Down Expand Up @@ -53,5 +53,6 @@
"@babel/traverse": "^7.9.5",
"debug": "^4.1.1"
},
"snyk": true
}
"snyk": true,
"gitHead": "1dbe4f90a735c6ec5d99f8e0c6ed58ee770cae85"
}
1 change: 1 addition & 0 deletions packages/es-stats/src/visitors/rootRelation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ export default function createRootRelationVisitors(
newScope();

if (p.isFunction()) {
// @ts-ignore
const refs = p.node.params.reduce((ret, param) => {
return ret.concat(getPatternNames(param as LVal));
}, [] as Array<MemberRef>);
Expand Down
2 changes: 1 addition & 1 deletion packages/git-changes-affected/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions packages/git-changes-affected/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "git-changes-affected",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "Find git changes affected files",
"keywords": [
"affected",
Expand Down Expand Up @@ -41,7 +41,8 @@
"@babel/parser": "^7.9.3",
"ast-lab-types": "^1.0.0-alpha.2",
"debug": "^4.1.1",
"es-stats": "^1.0.0-alpha.2",
"hunt-affected": "^1.0.0-alpha.2"
}
"es-stats": "^1.0.0-alpha.3",
"hunt-affected": "^1.0.0-alpha.3"
},
"gitHead": "1dbe4f90a735c6ec5d99f8e0c6ed58ee770cae85"
}
2 changes: 1 addition & 1 deletion packages/hunt-affected-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions packages/hunt-affected-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hunt-affected-cli",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "CLI for detecting where your file exports are used and potentially afffected by it's changes",
"main": "dist/index.js",
"bin": {
Expand Down Expand Up @@ -39,6 +39,7 @@
"dependencies": {
"commander": "^4.1.0",
"glob": "^7.1.4",
"hunt-affected": "^1.0.0-alpha.2"
}
"hunt-affected": "^1.0.0-alpha.3"
},
"gitHead": "1dbe4f90a735c6ec5d99f8e0c6ed58ee770cae85"
}
2 changes: 1 addition & 1 deletion packages/hunt-affected/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions packages/hunt-affected/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hunt-affected",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"description": "Detect where your file exports are used and potentially afffected by it's changes",
"main": "dist/index.js",
"modules": "dist/index.js",
Expand Down Expand Up @@ -45,6 +45,7 @@
"commander": "^4.1.0",
"debug": "^4.1.1",
"enhanced-resolve": "^4.1.1",
"es-stats": "^1.0.0-alpha.2"
}
"es-stats": "^1.0.0-alpha.3"
},
"gitHead": "1dbe4f90a735c6ec5d99f8e0c6ed58ee770cae85"
}
2 changes: 1 addition & 1 deletion packages/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type MemberRef = {
};

type HasLoc = {
loc: SourceLocation | null;
loc: SourceLocation | null | undefined;
};
export type ImportBase = MemberRef & {
source: Module;
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es6",
"lib": ["esnext"],
"lib": ["ES2019"],
"strict": true,
"moduleResolution": "Node",
"module": "CommonJS",
Expand Down
Loading

0 comments on commit 58f2e53

Please sign in to comment.