create-recur-tw 0.0.1 → 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 +5 -5
  2. package/index.js +1 -2
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # create-recur-tw
2
2
 
3
- > **Name-reservation alias.** The canonical package is
4
- > [`create-recur`](https://www.npmjs.com/package/create-recur).
3
+ Scaffold a Recur-integrated app.
4
+
5
+ > **Coming soon.** This is a placeholder release to reserve the package name.
6
+ > Follow progress at <https://github.com/recur-tw/templates>.
5
7
 
6
8
  ```bash
7
- npm create recur@latest
9
+ npm create recur-tw@latest
8
10
  ```
9
-
10
- Follow progress at <https://github.com/recur-tw/templates>.
package/index.js CHANGED
@@ -1,4 +1,3 @@
1
1
  #!/usr/bin/env node
2
- console.log('This is a name-reservation alias for create-recur.')
3
- console.log('Please use: npm create recur@latest')
2
+ console.log('create-recur-tw is coming soon.')
4
3
  console.log('Follow progress at https://github.com/recur-tw/templates')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-recur-tw",
3
- "version": "0.0.1",
4
- "description": "Alias placeholder for create-recur. Use `npm create recur` instead.",
3
+ "version": "0.0.2",
4
+ "description": "Scaffold a Recur-integrated app (coming soon).",
5
5
  "bin": {
6
6
  "create-recur-tw": "index.js"
7
7
  },