Helper to check a media query on JS
- This script appends has methods to check the size of screen.
See live here https://getninjas.github.io/dhalsim-js/
npm i dhalsim-js --save
yarn add dhalsim-js
npm run demo
yarn demo
npm run build
yarn build
You can use it via:
- GLOBAL variable
- CommonJs
- AMD
- ES6 Module
- init();
- isMobile();
- isTablet();
- isDesktop();
- isWide();
- beyondTablet();
- beyondMobile();
We are using npm version
to generate our releases. There are 3 kind of releases generally used: major, minor and patch. See the http://semver.org/ for more details.
The process is:
- After merge PR on master:
1.1 git checkout master
;
1.2 git pull --tags origin master
;
-
run
npm version major|minor|patch -m "Message of your changes"
(important: you need to be an admin to push on master); -
Now let's publish the package on npm. You need to run
npm adduser
and have the credentials to do this;
3.1 If nothing fails on npm version
and you have the credentials of npm GetNinjas account, run npm publish
.
- Done! Now, you can install the package on any project!