@ijuantm/simpl-addon 1.2.1 → 2.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 +1 -1
  2. package/install.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -12,7 +12,7 @@ npx @ijuantm/simpl-addon --list
12
12
 
13
13
  ### Install an Add-on
14
14
 
15
- Navigate to your Simpl project directory and run, for example, to install the "auth" add-on:
15
+ Navigate to your Simpl project directory and run the following command. For example, to install the "auth" add-on:
16
16
 
17
17
  ```bash
18
18
  npx @ijuantm/simpl-addon auth
package/install.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
 
3
3
  const fs = require('fs');
4
4
  const path = require('path');
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ijuantm/simpl-addon",
3
3
  "description": "CLI tool to install Simpl framework add-ons.",
4
- "version": "1.2.1",
4
+ "version": "2.0.0",
5
5
  "scripts": {
6
6
  "link": "npm link",
7
7
  "unlink": "npm unlink -g @ijuantm/simpl-addon"
@@ -26,5 +26,5 @@
26
26
  ],
27
27
  "author": "Iwan van der Wal",
28
28
  "license": "GPL-3.0-only",
29
- "homepage": "https://simpl.iwanvanderwal.nl/"
29
+ "homepage": "https://simpl.iwanvanderwal.nl"
30
30
  }