Skip to content

Commit

Permalink
package: bump version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jooy2 committed Apr 3, 2024
1 parent 8880bc8 commit 063b66d
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 79 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.0.1 (2024-04-03)

- `machineId`: Fix bug on Windows

## 1.0.0 (2024-04-03)

- Initial release
- Initial release. Do not use for production.
2 changes: 1 addition & 1 deletion lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class Machini {
return;
}

const output = (platformName === 'win32') ? stdout : (stdout.split('\r\n')?.[0] || '');
const output = platformName === 'win32' ? stdout : stdout.split('\r\n')?.[0] || '';

if (extractRegex) {
const extractOutput = extractRegex.exec(output)?.[1];
Expand Down
140 changes: 70 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "machini",
"version": "1.0.0",
"version": "1.0.1",
"description": "Get hardware specs, Machine ID(Device ID/UUID) information, and more for your current device. It's designed to be fast and lightweight so you can get just the information you need.",
"author": "Jooy2 <jooy2.contact@gmail.com>",
"license": "MIT",
Expand Down Expand Up @@ -56,17 +56,17 @@
],
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.21",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@types/node": "^20.12.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"mocha": "^10.3.0",
"mocha": "^10.4.0",
"prettier": "^3.2.5",
"terser": "^5.28.1",
"terser": "^5.30.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
"typescript": "^5.4.3"
}
}

0 comments on commit 063b66d

Please sign in to comment.