Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mendix/pluggable-widgets-tools

Package Overview
Dependencies
Maintainers
65
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mendix/pluggable-widgets-tools

Mendix Pluggable Widgets Tools

  • 8.9.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
337
decreased by-38.39%
Maintainers
65
Weekly downloads
 
Created
Source

Pluggable Widgets Tools

npm version Mendix 8 Build Status npm GitHub release GitHub issues

About

Library to build, test, format, run, release and lint your Pluggable Widget

How to install

Install from npm using npm install @mendix/pluggable-widgets-tools

How to use

In your package.json tasks, use the following command with the desired task: pluggable-widgets-tools task

Available tasks

  • start:server Used to start webpack-dev-server and run your WEB project. Accepts --open option to auto open your browser
  • start:js Used to build and watch the changes of your JavaScript ES6 Web project
  • start:ts Used to build and watch the changes of your TypeScript Web project
  • start:js:native Used to build and watch the changes of your JavaScript ES6 Native project
  • start:ts:native Used to build and watch the changes of your Typescript Native project
  • build:js Used to build your JavaScript ES6 Web project
  • build:ts Used to build your TypeScript Web project
  • build:js:native Used to build your JavaScript ES6 Native project
  • build:ts:native Used to build your TypeScript Web project
  • release:js Used to build your JavaScript ES6 Web project for production
  • release:ts Used to build your TypeScript Web project for production
  • release:js:native Used to build your JavaScript ES6 Native project for production
  • release:ts:native Used to build your TypeScript Web project for production
  • lint Used to lint your project using ESLint
  • lint:fix Used to fix lint problems/warning using ESLint
  • format Used to format your code using Prettier
  • test:unit Used to execute unit tests using Jest for your Web Project. Accepts option --u to update, --no-cache ro remove previous snapshots, --ci assumes use of a CI environment, --coverage to support coverage test. the snapshots. Files should be inside src/components/__tests__
  • test:unit:native Used to execute unit tests using Jest for your Native Project. Accepts option --u to update, --no-cache ro remove previous snapshots, --ci assumes use of a CI environment, --coverage to support coverage test.. Files should be inside src/components/__tests__
  • test:e2e:js Used to execute End-to-end tests using Wdio in your JavaScript Web Project
  • test:e2e:ts Used to execute End-to-end tests using Wdio in your TypeScript Web Project

Examples

"start": "pluggable-widgets-tools start:server --open"

"build": "pluggable-widgets-tools build:js"

"lint": "pluggable-widgets-tools lint"

"lint:fix": "pluggable-widgets-tools lint:fix"

"test:unit": "pluggable-widgets-tools test:unit --coverage"

Notes

If you are using mono repositories and need to build multiples widgets using Lerna or some other tool, you can provide the option --subprojectPath for the tasks build, start and release.

  • Example "buildSubProject": "pluggable-widgets-tools build:ts --subprojectPath \"/packages/mysubproject\"

If you are using a different folder for your Mendix project (for example, you are developing a widget on Mac OS, but your project is on Windows in Parallels), you can use the environment variable MX_PROJECT_PATH to specifiy this. This can either be set when executing the build command, or added to a .env file to your widget root directory containing the path. This should look like this:

MX_PROJECT_PATH="/Volumes/Windows/path/to/your/project"

Webpack extensibility

To extend the current webpack configurations and add your own custom features, you can create a file inside the root of your project with the files webpack.config.dev.js or webpack.config.prod.js according to your necessity. To extend the current files you can add inside your custom file the following lines:

Please note we have different configurations for web/hybrid and native mobile apps because native mobile doesn't have a preview mode in Mendix Studio Pro. Your preview configuration is related to the file Widget.webmodeler.tsx or .jsx.

For web and hybrid mobile apps

const merge = require("webpack-merge");
const baseConfig = require("./node_modules/@mendix/pluggable-widgets-tools/configs/webpack.config.dev.js"); //Can also be webpack.config.prod.js

const customConfig = {
    // Custom configuration goes here
    devtool: "source-map"
};
const previewConfig = {
    // Custom configuration goes here
    devtool: "source-map"
};

module.exports = [merge(baseConfig[0], customConfig), merge(baseConfig[1], previewConfig)];

For native mobile apps

const merge = require("webpack-merge");
const baseConfig = require("./node_modules/@mendix/pluggable-widgets-tools/configs/webpack.native.config.js");

const customConfig = {
    // Custom configuration goes here
    devtool: "source-map"
};

module.exports = [merge(baseConfig[0], customConfig)];

Keywords

FAQs

Package last updated on 29 Apr 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc