1.0.2 • Published 7 years ago

@woopa/permission v1.0.2

Weekly downloads
-
License
ISC
Repository
gitlab
Last release
7 years ago

Welcome to Woopa() {

Introduction

This module contains tools to manage user permissions.

Commands

You can build file with command npm run build which will run bundle and copy scripts. Notice postbundle, it’ll be run after bundle complete.

npm run build

Also you can bundle with defined config

rollup -c rollup.config.umd.js //umd
rollup -c rollup.config.esm.js //es2015

We can publish library code to npm with just command. Before do that, you need change version in package.json file.

npm run publish

Installation

Normal mode

npm install @woopa/permission --save

Development mode

cd ..
git clone [git@gitlab.woopasoft.com:222]:woopa-ui/permission.git
cd %PROJECT_FOLDER%/node_modules/@woopa
rm permission
ln -s ../../../woopa-ui/permission/dist/ permission

Information

Rollup config

rollup.config.umd.js

  • entry: where the entry file you want to bundle.
  • format: module format of your bundled file.
  • moduleName: the name of the module.
  • external: exclude dependency code in bundled code,which in this case, I assume user who use this library have installed
  • onwarn: Function that will intercept warning message. I ignore two unnecessary warning( THIS_IS_UNDEFINED and MISSING_GLOBAL_NAME ).
  • sourceMap: Set to true so Rollup will provide sourcemap.(it’s not necessary because I don’t minify my code for simplicity.)
  • plugins: plugin used in Rollup. I’ll explan next what plugin I use and why

We need to use plugins in Rollup for make magic happes.

  • rollup-plugin-node-resolve
  • rollup-plugin-commonjs
  • rollup-plugin-angular
  • rollup-plugin-typescript
  • node-sass

rollup.config.esm.js

For ES2015 module config file,we don’t have to duplicate by hand. just import config from rollup.config.umd.js and overide some config.

}