noskills 4.1.14

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 +21 -0
  2. package/bin.js +6 -0
  3. package/package.json +15 -0
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # noskills
2
+
3
+ Shortcut package so that `npx noskills` works as an alias for `npx eser noskills`.
4
+
5
+ ## Usage
6
+
7
+ ```bash
8
+ npx noskills
9
+ ```
10
+
11
+ This is equivalent to:
12
+
13
+ ```bash
14
+ npx eser noskills
15
+ ```
16
+
17
+ All arguments are forwarded transparently.
18
+
19
+ ## License
20
+
21
+ Apache-2.0
package/bin.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ // Copyright 2023-present Eser Ozvataf and other contributors. All rights reserved. Apache-2.0 license.
3
+
4
+ process.argv.splice(2, 0, "noskills");
5
+ const { main } = await import("eser");
6
+ await main();
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "noskills",
3
+ "version": "4.1.14",
4
+ "type": "module",
5
+ "bin": {
6
+ "noskills": "./bin.js"
7
+ },
8
+ "dependencies": {
9
+ "eser": "^4.1.14"
10
+ },
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/eser/stack"
14
+ }
15
+ }