cli-argv-util 0.1.1 → 1.0.1

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.
@@ -1,4 +1,4 @@
1
- //! cli-argv-util v0.1.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
1
+ //! cli-argv-util v1.0.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
2
2
 
3
3
  export type StringFlagMap = {
4
4
  [flag: string]: string | undefined;
@@ -1,4 +1,4 @@
1
- //! cli-argv-util v0.1.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
1
+ //! cli-argv-util v1.0.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
2
2
 
3
3
  const cliArgvUtil = {
4
4
  parse(validFlags) {
@@ -1,4 +1,4 @@
1
- //! cli-argv-util v0.1.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
1
+ //! cli-argv-util v1.0.1 ~~ https://github.com/center-key/cli-argv-util ~~ MIT License
2
2
 
3
3
  (function (factory) {
4
4
  if (typeof module === "object" && typeof module.exports === "object") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cli-argv-util",
3
- "version": "0.1.1",
3
+ "version": "1.0.1",
4
4
  "description": "Simple utility to parse command line parameters and flags (arguments vector)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -59,7 +59,7 @@
59
59
  },
60
60
  "runScriptsConfig": {
61
61
  "build": [
62
- "rimraf build dist **/.DS_Store",
62
+ "rimraf build dist",
63
63
  "jshint . --exclude-path .gitignore",
64
64
  "eslint --max-warnings 0 . --ext .ts",
65
65
  "tsc",
@@ -73,17 +73,17 @@
73
73
  "test": "mocha spec/*.spec.js"
74
74
  },
75
75
  "devDependencies": {
76
- "@types/node": "~18.11",
77
- "@typescript-eslint/eslint-plugin": "~5.49",
78
- "@typescript-eslint/parser": "~5.49",
79
- "add-dist-header": "~0.3",
76
+ "@types/node": "~18.15",
77
+ "@typescript-eslint/eslint-plugin": "~5.56",
78
+ "@typescript-eslint/parser": "~5.56",
79
+ "add-dist-header": "~1.0",
80
80
  "assert-deep-strict-equal": "~1.0",
81
- "copy-file-util": "~0.1",
82
- "eslint": "~8.32",
81
+ "copy-file-util": "~1.0",
82
+ "eslint": "~8.36",
83
83
  "jshint": "~2.13",
84
84
  "mocha": "~10.2",
85
- "rimraf": "~4.1",
86
- "run-scripts-util": "~0.1",
87
- "typescript": "~4.9"
85
+ "rimraf": "~4.4",
86
+ "run-scripts-util": "~1.0",
87
+ "typescript": "~5.0"
88
88
  }
89
89
  }