npq 3.4.4 → 3.4.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -48,7 +48,7 @@ jobs:
48
48
  - uses: actions/checkout@v2
49
49
  - uses: actions/setup-node@v2
50
50
  with:
51
- node-version: '18'
51
+ node-version: '20'
52
52
  - name: install dependencies
53
53
  run: npm ci --ignore-engines --ignore-scripts
54
54
  - name: release
package/lib/cliCommons.js CHANGED
@@ -33,6 +33,14 @@ class cliCommons {
33
33
 
34
34
  static getOptions() {
35
35
  return {
36
+ S: {
37
+ alias: ['save', 'save-prod', 'save-optional', 'save-bundle'],
38
+ type: 'boolean'
39
+ },
40
+ g: {
41
+ alias: 'global',
42
+ type: 'boolean'
43
+ },
36
44
  P: {
37
45
  alias: ['save-prod', 'peer'],
38
46
  type: 'boolean'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npq",
3
- "version": "3.4.4",
3
+ "version": "3.4.5",
4
4
  "description": "marshall your npm/npm package installs with high quality and class 🎖",
5
5
  "bin": {
6
6
  "npq": "./bin/npq.js",