Currently, I am attempting to execute the exhibits in my deck.gl project. After cloning the repository, navigating to the exhibits
directory, and running the command:
npm run browserify
All packages are successfully installed without any errors. However, upon launching the project, an error is displayed in the browser:
Unknown plugin "static-fs" specified in "/Users/me/Projects/deck.gl/.babelrc" at 0,
attempted to resolve relative to "/Users/me/Projects/deck.gl"
while parsing file: /Users/me/Projectss/deck.gl/exhibits/app.js
This issue seems to stem from the contents of the .babelrc
file:
{
"presets": ["es2015", "stage-2", "react"],
"plugins": [
"static-fs",
"transform-decorators-legacy"
]
}
The situation has left me unsure of how to proceed as searches online have not provided a solution, and it appears that static-fs
is not recognized as a valid package.