You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@moonwalker/jetpack

Package Overview
Dependencies
Maintainers
9
Versions
429
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@moonwalker/jetpack

Webpack for Moonwalkers

3.3.7
npm
Version published
Weekly downloads
743
551.75%
Maintainers
9
Weekly downloads
 
Created
Source

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 13 Dec 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