When I run this in data-plumber, it gives the following output:
➜ dataplumber data-plumber run package.json
cat /usr/local/lib/node_modules/data-plumber/data/nextbus.xml | gasket run --config /Users/Jon/Code/dataplumber/package.json
ENOTDIR, open '/Users/Jon/Code/dataplumber/package.json/package.json'
The error shows that the path has an extra /package.json added to the end.
I'm using @maxogden's
data-plumber
lesson to learn about Gasket.Running
data-plumber run package.json
with an invalidpackage.json
will causedata-plumber
to search in the wrong directory for the package.json.Test package.json (notice the extra comma in the gasket section):
When I run this in data-plumber, it gives the following output:
The error shows that the path has an extra
/package.json
added to the end.