All Projects → aniftyco → plebpack

aniftyco / plebpack

Licence: MIT license
Webpack configuration for the common people.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to plebpack

config-loader
[DEPRECATED] A loader for webpack configuration files
Stars: ✭ 14 (+7.69%)
Mutual labels:  webpack-configuration, configuration
Craco
Create React App Configuration Override, an easy and comprehensible configuration layer for create-react-app
Stars: ✭ 5,285 (+40553.85%)
Mutual labels:  create-react-app, configuration
React Env
Runtime environment variables for react apps.
Stars: ✭ 90 (+592.31%)
Mutual labels:  create-react-app, configuration
leaflet-map-builder
gherardovarando.github.io/leaflet-map-builder/
Stars: ✭ 16 (+23.08%)
Mutual labels:  configuration
react-snake
React Snake (Functional Style)
Stars: ✭ 128 (+884.62%)
Mutual labels:  create-react-app
config-webpack-plugin
💫 Merge one or more configuration files together with environment variables too.
Stars: ✭ 18 (+38.46%)
Mutual labels:  configuration
media-library
An online media library application with React, Redux and redux-saga
Stars: ✭ 27 (+107.69%)
Mutual labels:  create-react-app
react-mobx-local-state-example
React MobX (for Local State) Example
Stars: ✭ 27 (+107.69%)
Mutual labels:  create-react-app
build-nginx
Fetches nginx and any optional third-party modules and dependencies you specify, such as openssl and PCRE and then configures and builds.
Stars: ✭ 48 (+269.23%)
Mutual labels:  configuration
uniswapv3-calculator
An all-in-one platform for Uniswap liquidity providers (prev Uniswap Calculator)
Stars: ✭ 131 (+907.69%)
Mutual labels:  create-react-app
konfsave
Easy saving and switching between multiple KDE configurations.
Stars: ✭ 42 (+223.08%)
Mutual labels:  configuration
Dark Souls Config Utility
All-in-one installer and configuration UI for various mods/fixes for Dark Souls™: Prepare to Die Edition.
Stars: ✭ 27 (+107.69%)
Mutual labels:  configuration
runtime-config-loader
This is an Angular library that provides an easy way to load a configuration JSON file for runtime configuration.
Stars: ✭ 32 (+146.15%)
Mutual labels:  configuration
swift-declarative-configuration
Declarative configuration for your objects
Stars: ✭ 46 (+253.85%)
Mutual labels:  configuration
nvim configration
Neovim diy develop enviroment.This project integrates neovim tmux zsh and some very useful plugs of them including YouCompleteMe FZF auto pairs nerdtree ncm2 and so on.
Stars: ✭ 22 (+69.23%)
Mutual labels:  configuration
cra-template-quickstart-redux
Opinionated quickstart Create React App template with Redux, React Testing Library and custom eslint configuration
Stars: ✭ 66 (+407.69%)
Mutual labels:  create-react-app
crud-app
❄️ A simple and beautiful CRUD application built with React.
Stars: ✭ 61 (+369.23%)
Mutual labels:  create-react-app
Flex-AntiCheat
Flex AntiCheat - Optimized Configs For Multiple AntiCheats
Stars: ✭ 37 (+184.62%)
Mutual labels:  configuration
CubeMail
CubeMail is a webmail client built using React and Chakra UI, It runs in the browser and uses the Gmail's public Javascript API.
Stars: ✭ 25 (+92.31%)
Mutual labels:  create-react-app
speedy-math
An application which allows user (small kids) to practice basic Mathematics operations
Stars: ✭ 28 (+115.38%)
Mutual labels:  create-react-app

Plebpack

Webpack configuration for the common people.

Example

webpack.config.ts

import config, { entry, output } from 'plebpack';
import babel from '@plebpack/babel';

config.use(entry('./src/index.ts'));
config.use(output('./public/[name].js'));
config.use(
  babel({
    presets: ['@babel/preset-env', '@babel/preset-typescript'],
  })
);

export default config;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].