![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Small but efficient frontend toolchain, built on top of Gulp and insipired by Frigate
.. image:: https://badge.fury.io/js/wheelie.svg :target: https://badge.fury.io/js/wheelie :alt: Latest version
.. image:: https://readthedocs.org/projects/wheelie/badge/?version=latest :target: http://wheelie.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
.. image:: https://travis-ci.org/wheelie/wheelie.svg :target: https://travis-ci.org/wheelie/wheelie :alt: Build Status
.. image:: https://codecov.io/gh/wheelie/wheelie/branch/master/graph/badge.svg :target: https://codecov.io/gh/wheelie/wheelie :alt: Coverage Status
.. image:: https://david-dm.org/wheelie/wheelie.svg :target: https://david-dm.org/wheelie/wheelie :alt: Dependency Status
.. image:: https://david-dm.org/wheelie/wheelie/dev-status.svg :target: https://david-dm.org/wheelie/wheelie#info=devDependencies :alt: Dev Dependency Status
Small but efficient frontend toolchain, built on top of Gulp
_.
.. _Gulp: http://gulpjs.com/
If you need support, please use the GitHub issue tracker
_.
.. _GitHub issue tracker: https://github.com/wheelie/wheelie/issues
We love contributions, so please feel free to fix bugs, improve things, provide documentation. Just follow the guidelines and submit a PR.
Wheelie isn't a task runner, a build system or a Gulp wrapper. It's just a common interface to your Gulp tasks so that you can share, re-use and easily update them, improving your automated workflow. It ships out of the box with:
Task
model to create custom tasks like you usually do with Gulp. The programmatic
interface exposes a configuration callback so that other developers may re-use your
task, overriding your defaults.npm
, you can update your projects' toolchain with
just a change in the project's package.json
.gulp
instance, configured as described in a recipe.Install Wheelie with the official recipes registry::
$ npm install --save-dev wheelie wheelie-recipe
Create a gulpfile.js
in your project root folder with the following content:
.. code-block:: javascript
// importing your gulp reference
var gulp = require('gulp');
// importing Wheelie constructor and a recipe
var Wheelie = require('wheelie');
var recipe = require('wheelie-recipe');
// adding a Wheelie recipe
var wheelie = new Wheelie();
wheelie.add(recipe);
wheelie.build();
// <-- at this point, Gulp is configured with a set of tasks available in the wheelie-recipe package
With the above Gulpfile
, you can launch the watch
task simply with:
.. code-block:: bash
$ gulp
wheelie-recipe
_ is a recipe currently maintained by Wheelie core developers. We're not suggesting
our way to write frontend applications, but just to inspire and enforce a community-driven way to write
Wheelie recipes.
.. _wheelie-recipe: https://github.com/wheelie/wheelie-recipe
We use Jest
_ as a test framework. Install all development dependencies and launch the test
suite:
.. code-block:: bash
$ npm install
$ npm test
.. _Jest: https://facebook.github.io/jest/
Full documentation for the project is available at http://wheelie.readthedocs.io/
Wheelie is released under the terms of the BSD LICENSE. Full details in LICENSE
file.
FAQs
Small but efficient frontend toolchain, built on top of Gulp and insipired by Frigate
The npm package wheelie receives a total of 1 weekly downloads. As such, wheelie popularity was classified as not popular.
We found that wheelie demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.