usesodapop 0.0.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 (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +6 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # usesodapop (deprecated)
2
+
3
+ Forwarding alias for [heysodapop](https://www.npmjs.com/package/heysodapop).
4
+
5
+ Install the real package instead:
6
+
7
+ ```bash
8
+ npm install heysodapop
9
+ ```
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // usesodapop — deprecated alias for heysodapop
2
+ console.warn(
3
+ "[DEPRECATED] 'usesodapop' is deprecated. " +
4
+ "Use 'heysodapop' instead: npm install heysodapop"
5
+ );
6
+ module.exports = require('heysodapop');
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "usesodapop",
3
+ "version": "0.0.2",
4
+ "description": "Deprecated alias — use heysodapop instead.",
5
+ "main": "index.js",
6
+ "scripts": { "test": "echo \"no tests\" && exit 0" },
7
+ "keywords": [],
8
+ "author": "",
9
+ "license": "MIT",
10
+ "dependencies": { "heysodapop": "*" },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/getsodapop/getsodapop.git"
14
+ }
15
+ }