epicshop 1.0.0

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 (3) hide show
  1. package/README.md +4 -0
  2. package/epicshop.js +4 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # epicshop
2
+
3
+ This is just a placeholder to avoid someone hijacking the `epicshop` package
4
+ name as this is the binary for the `@epic-web/workshop-cli` package.
package/epicshop.js ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.error(`🚨 Error from npm.im/epicshop: You're probably trying to run @epic-web/workshop-cli. Please use that instead.`);
4
+ process.exit(1);
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "epicshop",
3
+ "version": "1.0.0",
4
+ "description": "This is just a placeholder to avoid someone hijacking the `epicshop` package name as this is the binary for the `@epic-web/workshop-cli` package.",
5
+ "main": "epicshop.js",
6
+ "keywords": [],
7
+ "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
8
+ "license": "MIT",
9
+ "type": "module",
10
+ "bin": {
11
+ "epicshop": "./epicshop.js"
12
+ }
13
+ }