Questions tagged [parcel]

In the realm of Android programming, a Parcel serves as a vessel for a message containing data and object references. It stands out as a high-speed option in comparison to Java's traditional serialization method.

Struggling with TypeScript errors when using Vue in combination with Parcel?

While running a demo using vue + TypeScript with Parcel, I encountered an error in the browser after successfully bootstrapping: vue.runtime.esm.js:7878 Uncaught TypeError: Cannot read property 'split' of undefined at Object.exports.install ...

I am unable to execute Parcel in my project as it is not generating a distribution folder with the compiled file

I'm in need of some assistance in identifying and resolving an error that I'm having trouble understanding. To start, I initialized the project with the command: npm init -y Next, I installed Parcel using: npm install --save-dev parcel I then ...

Having trouble resolving a dependency within an imported node module named "node-fetch"

As someone who is still a bit of a novice in Node, I apologize for what may seem like a beginner question. I have developed a small Chrome extension where the only node module I imported is called node-fetch. Typically, running yarn build to create a packa ...

The npm script fails to properly start the karma test

Utilizing parcel for project building on a Windows system, I integrated karma as my test runner. My expectation was that any changes made to the source code would trigger Parcel to rebuild the project and Karma to execute the tests. To achieve this, I adde ...

The essential guide to creating a top-notch design system with Material UI

Our company is currently focusing on developing our design system as a package that can be easily installed in multiple projects. While the process of building the package is successful, we are facing an issue once it is installed and something is imported ...

Package Compiler & React Server Rendering

I recently integrated Parcel Bundler to bundle my client files for React Server Side Rendering. After setting up the Parcel Middleware and specifying the location of my client entry point, I noticed that although Parcel was bundling my files, the ReactDOM ...