Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ion-plugins
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
redox-os
ion-plugins
Commits
9a2dfe6b
Commit
9a2dfe6b
authored
Oct 16, 2019
by
Ashwin A Kumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added omz-npm
parent
b315619f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
0 deletions
+44
-0
tools/omz-npm.ion
tools/omz-npm.ion
+44
-0
No files found.
tools/omz-npm.ion
0 → 100644
View file @
9a2dfe6b
# Install dependencies globally
alias npmg = 'npm i -g '
# npm package names are lowercase
# Thus, we've used camelCase for the following aliases:
# Install and save to dependencies in your package.json
# npms is used by https://www.npmjs.com/package/npms
alias npmS = 'npm i -S '
# Install and save to dev-dependencies in your package.json
# npmd is used by https://github.com/dominictarr/npmd
alias npmD = 'npm i -D '
# Execute command from node_modules folder based on current directory
# i.e npmE gulp
alias npmE='PATH = '$(npm bin)":"$PATH''
# Check which npm modules are outdated
alias npmO = 'npm outdated'
# Check package versions
alias npmV = 'npm -v'
# List packages
alias npmL = 'npm list'
# List top-level installed packages
alias npmL0 = 'npm ls --depth=0'
# Run npm start
alias npmst = 'npm start'
# Run npm test
alias npmt = 'npm test'
# Run npm scripts
alias npmR = 'npm run'
# Run npm publish
alias npmP = 'npm publish'
# Run npm init
alias npmI = 'npm init'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment