New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

@moonwalker/jetpack

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@moonwalker/jetpack

Webpack for Moonwalkers

  • 4.2.0-beta.17
  • npm
  • Socket score

Version published
Maintainers
9
Created

Jetpack

renovatebot ci

Webpack for Moonwalkers.

Quick Start

Install:

$ npm install -g @moonwalker/jetpack

Create a new project:

$ jetpack create projectname

Working on the project:

$ cd projectname

Run dev server:

$ npm start

Build for production:

$ npm run build

Eslint + Prettier config

The idea is to automate the code formatting, while relying on Eslint to report code errors (undefined variables, not found modules, etc.).

Read more about code formatting and linting

Setup
// .eslintrc.js
module.exports = {
  extends: './node_modules/@moonwalker/jetpack/src/eslintrc.js',
  // PROJECT CUSTOM OPTIONS
};
// prettier.config.js
module.exports = require('./node_modules/@moonwalker/jetpack/src/prettier.config.js');
// lint-staged.config.js
module.exports = require('./node_modules/@moonwalker/jetpack/src/lint-staged.config.js');

Development

yarn

Publishing

yarn bump

Read more about the release flow

FAQs

Package last updated on 24 Aug 2022

Did you know?

Socket

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.

Install

Related posts