Qarson BASE UI
Main purpose of this library is to aggregate main UI parts of qarson multipage system.
Library contains css styles written in SASS preprocessor and few smaller javascript functions of user interface
basing on simple selecting DOM element mostly with jquery and manipulate DOM tree.
Requirements
Installation:
Installing depedencies
npm install
Build production library files
npm run build
Development:
Library is third party lib for main project.
To work with code in configured development process you need to do few steps:
-
Link current library (be aware of used the same node version in all)
npm link
-
Run build process in development mode with watching changes
npm run build:dev
-
Move to "including" lib directory and link local resources
npm link @dac-software/base-ui
Then, run webpack-dev-server instance in order to instructions in "including" project.
* Build task build two types of library entrypoints:
####Codestyle
We are in consonance with standardjs.
Validation codestyle:
npm run codestyle-check
Automatic fix:
npm run codestyle-fix
Development test deploy
For manual tests purposes library should be published on npm with dev tag with task/story identifier
NPM publising:
- Increase version in package.json
- Npm login with proper username and password
npm login
- Npm publish (command will trigger prepare npm method which should build files to dist directory)
npm publish --access=public