polycasts | biweekly YouTube series covering all things Polymer | GraphQL library
kandi X-RAY | polycasts Summary
kandi X-RAY | polycasts Summary
Polycasts is a biweekly YouTube series covering all things Polymer and Web Components. Each episode contains an example project, which lives in this repo. If you have questions, concerns, comments, etc. file an issue or hit us up on the twitters @Elliott_Marquez @rob_dodson.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of polycasts
polycasts Key Features
polycasts Examples and Code Snippets
Community Discussions
Trending Discussions on polycasts
QUESTION
I'm trying to run gulp
to build my app like Rob Dodson explains here.
At the command line, if I run:
...ANSWER
Answered 2017-Jan-21 at 22:10The original error is unrelated to the "alternate error".
While the build
task runs gulp
, npm run
prioritizes the locally-installed gulp
(at node_modules/.bin/gulp
) before the system-installed gulp
. Running gulp
yourself (without npm run
) would invoke the globally-installed gulp
, which may result in an error if it's incompatible with your project (e.g., Gulp 3 binary with Gulp 4 API in your scripts, which appears to be the case). You could either install Gulp 4 so that you can run gulp
yourself, or continue using npm run build
.
To troubleshoot the original error, I recommend starting from the Polycast's original source (if you haven't already) to determine what the difference could be.
If you prefer to stick with your current track, I suggest a few things:
- Verify the paths in your HTML imports, as a path to a non-existent file would cause a silent error (
polymer-build
issue 88). It might be helpful to runpolymer build -v
(verbose build). - Add
buildStream.on('error', (err) => console.log(err))
afterlet buildStream = ...
in case any unsuppressederror
events crop up in that stream.
QUESTION
I'm trying to run gulp
to build my app like Rob Dodson explains here, but I get the following error:
...
ANSWER
Answered 2017-Jan-21 at 04:40merge-stream
is already declared as a devDependency
in package.json
, so the error indicates either you haven't installed the dependencies, or that package is somehow deleted from your dependency store (i.e., node_modules/
).
To install only merge-stream
, you'd run this from the project's root directory:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install polycasts
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page