We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When getting the error:
Running "babel:dist" (babel) task Warning: Path must be a string. Received undefined Use --force to continue.
The solution is to change the dist object from src to path dist: { path: { './server.js': 'src/app.js' } }
dist: { path: { './server.js': 'src/app.js' } }
At least in versions "babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "grunt-babel": "^6.0.0"
"babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "grunt-babel": "^6.0.0"
Also need to change the example.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When getting the error:
The solution is to change the dist object from src to path
dist: { path: { './server.js': 'src/app.js' } }
At least in versions
"babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "grunt-babel": "^6.0.0"
Also need to change the example.
The text was updated successfully, but these errors were encountered: