Skip to content

Commit

Permalink
fix importing transitive deps
Browse files Browse the repository at this point in the history
  • Loading branch information
fa93hws committed Feb 29, 2024
1 parent 019616b commit 64a60d1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "buildkite-graph",
"version": "0.0.0-development",
"name": "@canva/buildkite-graph",
"version": "6.1.1",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
Expand All @@ -13,6 +13,7 @@
"@types/graphviz": "^0.0.32",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "^15.12.5",
"@types/seedrandom": "^3.0.1",
Expand Down Expand Up @@ -49,6 +50,7 @@
"@sindresorhus/slugify": "^1.1.0",
"graphviz": "^0.0.9",
"js-yaml": "^4.1.0",
"lodash.isequal": "^4.5.0",
"lodash.sortby": "^4.7.0",
"ow": "^0.25.0",
"topological-sort": "^0.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { YamlSerializer } from './serializers/yaml';
import { sortedSteps } from './sortedSteps';
import { sortedWithBlocks } from './sortedWithBlocks';
import { WaitStep } from './steps/wait';
import { isEqual } from 'lodash';
import isEqual from 'lodash.isequal';
import { ok } from 'assert';
export { ExitStatus, Step } from './base';
export { Conditional, Generator, ThingOrGenerator } from './conditional';
Expand Down
9 changes: 8 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,13 @@
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad"
integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==

"@types/lodash.isequal@^4.5.8":
version "4.5.8"
resolved "https://registry.yarnpkg.com/@types/lodash.isequal/-/lodash.isequal-4.5.8.tgz#b30bb6ff6a5f6c19b3daf389d649ac7f7a250499"
integrity sha512-uput6pg4E/tj2LGxCZo9+y27JNyB2OZuuI/T5F+ylVDYuqICLG2/ktjxx0v6GvVntAf8TvEzeQLcV0ffRirXuA==
dependencies:
"@types/lodash" "*"

"@types/lodash.sortby@^4.7.6":
version "4.7.6"
resolved "https://registry.yarnpkg.com/@types/lodash.sortby/-/lodash.sortby-4.7.6.tgz#eed689835f274b553db4ae16a4a23f58b79618a1"
Expand Down Expand Up @@ -4182,7 +4189,7 @@ lodash.escaperegexp@^4.1.2:
lodash.isequal@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA=
integrity sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==

lodash.ismatch@^4.4.0:
version "4.4.0"
Expand Down

0 comments on commit 64a60d1

Please sign in to comment.