nid2-cli 1.1.1 โ†’ 1.1.2

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.
Files changed (2) hide show
  1. package/README.md +21 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -56,13 +56,13 @@ nid2 [options]
56
56
 
57
57
  ### ๐Ÿ“‹ Available Options
58
58
 
59
- | Option | Short | Type | Description |
60
- | ---------------------------- | ----- | -------- | ----------------------------------------------------- |
61
- | `--package-name` | `-p` | `string` | NPM package name to simulate downloads for |
62
- | `--package-version` | `-v` | `string` | Package version (defaults to latest if not specified) |
63
- | `--num-downloads` | `-n` | `number` | Total number of downloads to simulate |
64
- | `--max-concurrent-downloads` | `-m` | `number` | Maximum concurrent downloads at once |
65
- | `--download-timeout` | `-t` | `number` | Download timeout in milliseconds |
59
+ | Option | Short | Type | Required | Description |
60
+ | :-- | --- | --- | --- | :-- |
61
+ | `--package-name` | `-p` | `string` | `true` | NPM package name to simulate downloads for |
62
+ | `--package-version` | `-v` | `string` | `false` | Package version (defaults to latest if not specified) |
63
+ | `--num-downloads` | `-n` | `number` | `false` | Total number of downloads to simulate |
64
+ | `--max-concurrent-downloads` | `-m` | `number` | `false` | Maximum concurrent downloads at once |
65
+ | `--download-timeout` | `-t` | `number` | `false` | Download timeout in milliseconds |
66
66
 
67
67
  ### ๐Ÿ“ Usage Examples
68
68
 
@@ -114,14 +114,14 @@ npm install
114
114
 
115
115
  ### ๐Ÿงช Available Scripts
116
116
 
117
- | Script | Description |
118
- | ----------------- | ---------------------------------------------- |
119
- | `npm run dev` | Run in development mode with file watching |
117
+ | Script | Description |
118
+ | :-- | --- |
119
+ | `npm run dev` | Run in development mode with file watching |
120
120
  | `npm run dev:cli` | Run CLI in development mode with file watching |
121
- | `npm run build` | Compile TypeScript to JavaScript |
122
- | `npm start` | Run compiled JavaScript |
123
- | `npm test` | Run test suite with coverage |
124
- | `npm run format` | Format code and fix linting issues |
121
+ | `npm run build` | Compile TypeScript to JavaScript |
122
+ | `npm start` | Run compiled JavaScript |
123
+ | `npm test` | Run test suite with coverage |
124
+ | `npm run format` | Format code and fix linting issues |
125
125
 
126
126
  ## โš™๏ธ Configuration
127
127
 
@@ -143,13 +143,13 @@ export default config;
143
143
 
144
144
  ### Configuration Options
145
145
 
146
- | Property | Type | Description | Example |
147
- | ------------------------ | ------------------- | ------------------------------------- | ----------- |
148
- | `packageName` | `string` | NPM package to simulate downloads for | `"lodash"` |
149
- | `packageVersion` | `string` (optional) | Specific package version | `"4.17.21"` |
150
- | `numDownloads` | `number` | Total downloads to simulate | `1000` |
151
- | `maxConcurrentDownloads` | `number` | Parallel downloads at once | `300` |
152
- | `downloadTimeout` | `number` | Timeout per download (ms) | `3000` |
146
+ | Property | Type | Description | Example |
147
+ | :-- | --- | :-- | --- |
148
+ | `packageName` | `string` | NPM package to simulate downloads for | `"lodash"` |
149
+ | `packageVersion` | `string` (optional) | Specific package version | `"4.17.21"` |
150
+ | `numDownloads` | `number` | Total downloads to simulate | `1000` |
151
+ | `maxConcurrentDownloads` | `number` | Parallel downloads at once | `300` |
152
+ | `downloadTimeout` | `number` | Timeout per download (ms) | `3000` |
153
153
 
154
154
  ### โšก Performance Tuning
155
155
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nid2-cli",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Raises the popularity score on your package through nefarious means.",
5
5
  "author": "otoneko.",
6
6
  "license": "MIT",