Skip to content

Commit

Permalink
export DependencyFinder (#25)
Browse files Browse the repository at this point in the history
* export DependencyFinder

* export JsonPointer

---------

Co-authored-by: Sergey Sergeev <[email protected]>
  • Loading branch information
zhirafovod and Sergey Sergeev authored Nov 27, 2023
1 parent 65b655b commit 11ef859
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"./dist/src/TemplateProcessor.js": "./dist/src/TemplateProcessor.js",
"./dist/src/CliCore.js": "./dist/src/CliCore.js",
"./dist/src/StatedREPL.js": "./dist/src/StatedREPL.js",
"./dist/src/TestUtils.js": "./dist/src/TestUtils.js"
"./dist/src/TestUtils.js": "./dist/src/TestUtils.js",
"./dist/src/DependencyFinder.js": "./dist/src/DependencyFinder.js",
"./dist/src/JsonPointer.js": "./dist/src/JsonPointer.js"
},
"scripts": {
"clean": "rm -rf dist",
Expand Down
2 changes: 1 addition & 1 deletion src/test/TemplateProcessor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1622,6 +1622,7 @@ test("function generators",async () => {
}
tp.functionGenerators.set('serial', serial);
await tp.initialize();

expect(tp.output).toStrictEqual({
"a": "path was: /a",
"b": "path was: /b",
Expand Down Expand Up @@ -1668,7 +1669,6 @@ test("function generators",async () => {
"/f/steps"
]
});

});

test("apply", async () => {
Expand Down

0 comments on commit 11ef859

Please sign in to comment.