@qfo6/ag-grid-custom v0.1.9
@QFO6/ag-grid-custom
Project setup
yarn installCompiles and hot-reloads for development
yarn run serveCompiles and minifies for production
yarn run build:coreRun your unit tests
yarn run test:unitLints and fixes files
yarn run lintAdd dependencies to the project
yarn add <package>
yarn add -S <package>
yarn add -D <package>Generate/Update components doc
Please refer https://vuese.github.io/website/cli/
Contribution
Steps
Clone this repository to your local machine
Add the code you want to share and run
npm run buildto build latest modulesBump a version by run
npm version patch/minor/major -m 'changes description', it will upgrade the version number and commit automatically.Run
npm publishto publish to our registry by following the guideSync your local commits to remote repository.
- Check the latest version in npm registry.
Using the Package
Set local registry
Before install this module, please set your local npm or yarn registry by:
- Note: login user and credentials please contact with DevOps members.
Disable ssl
Currently, we need to disable ssl during deploy to server in CI tools like Jenkins
yarn config set "strict-ssl" false -gOr change the file located in ${your_user}/.yarnrc and add below line into it :
strict-ssl=falseInstall it in your project
yarn add @QFO6/ag-grid-customUsage
Once you have installed the package, in your entry file of the repository (main.js) if you are using it in a Vue CLI project. Write the import command
import AgGridCustom from '@QFO6/ag-grid-custom'To install it globally.
Vue.use(AgGridCustom)If not globally, you can also import the individual components locally.
import VClientPaginatedAgTable from '@QFO6/ag-grid-custom'Note
Use --skip-plugin to skip the plugins during build the bundles, more details.
vue-cli-service build --skip-plugins vuetify --target lib --name AgCustom --filename ag-grid-custom lib/index.js1 year ago