npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@elliemae/pui-cli

v8.42.2

Published

ICE MT UI Platform CLI

Downloads

6,213

Readme

Command Line Interface for UI Applications & Libraries

Build Status

SonarQube Report

Features

  • Supports typescript
  • Builds react application / library using webpack
  • Builds storybook application in libraries
  • Provides code quality check configurations such as
    • eslint configurations
    • prettier configuration
    • commit lint configuration
    • style lint configuration
  • Provides common unit/integration test configuration
  • Runs react application using webpack dev server and express
  • Runs mocked application apis using express server

Migration Guide

v7 to v8

Changelog

v6 to v7

ChangeLog

v5 to v6

ChangeLog

v4 to v5

For most users this upgrade doesn't break functionality. If it does, please reach out to ui-platform-chat channel for assistance

v3 to v4

Version 4 has breaking changes that impacts only libraries (e.g: app sdk, app widgets etc) not applications

Following changes to be done in package.json file of the library after upgrading to v4

  • in main field, replace ./dist/index.js with ./dist/cjs/index.js

  • in module field, replace ./lib/index.js with ./dist/es/index.js

  • add following exports field to your package.json

      "exports": {
        ".": {
          "import": "./dist/es/index.js",
          "require": "./dist/cjs/index.js"
        }
      },

v2 to v3

V3 uses new version of husky, after upgrading cli follow the steps below to configure git hooks

  • npx --no-install husky-init && npm exec -- github:typicode/husky-4-to-6 --remove-v4-config
  • remove .husky folder from your git repo root
  • copy the entire /.husky folder from this repo and place it in your git repo root
  • npm run prepare
  • create 'lint-staged.config.js' in your git repo root and copy the contents below
const { lintStagedConfig } = require('@elliemae/pui-cli');
module.exports = lintStagedConfig;
  • remove following lines from your package.json
"lint-staged": {
    "*.js": [
      "npm run lint:fix",
      "npm run test:staged",
      "npm run gendoc"
    ],
    "*.mdx": [
      "prettier --write"
    ],
    "*.json": [
      "prettier --write"
    ]
  },

Enabling Typescript

Version 3 has support to Typescript

To enable typescript for your application source code add tsconfig.json file to your application root and add the json snippet below

{
  "extends": "@elliemae/pui-cli/lib/typescript/app.tsconfig.json",
  "compilerOptions": {
    "outDir": "dist"
  },
  "include": ["app/**/*"],
  "exclude": ["node_modules"]
}

for library source code

{
  "extends": "@elliemae/pui-cli/lib/typescript/library.tsconfig.json",
  "compilerOptions": {
    "outDir": "dist",
    "declarationDir": "dist/types"
  },
  "include": ["lib/**/*"],
  "exclude": ["node_modules"]
}

v1 to v2

  • after cli upgrade to v2 sync up your application code with latest version of React boilerplate