diff --git a/README.md b/README.md index 0781592..2c81ee7 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ Clean up your Meteor package cache! If you install `meteor-cleaner` globally using the `npm` version bundled with Meteor, you can run the `clean-package-cache` command like a built-in Meteor command. +**Note: Windows is currently not supported!** + ## Usage ```sh diff --git a/package-lock.json b/package-lock.json index d82f1f9..cf4ac47 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "meteor-cleaner", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 4dcf7bd..492a769 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,14 @@ { "name": "meteor-cleaner", - "version": "1.0.0", + "version": "1.0.1", "description": "Clean up your Meteor package cache!", "main": "index.js", "bin": { "clean-package-cache": "index.js" }, + "os": [ + "!win32" + ], "scripts": { "test": "jest", "test:watch": "jest --watch",