@j-o-r/sh 0.0.4 → 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 (4) hide show
  1. package/README.md +55 -63
  2. package/lib/sh.d.ts +95 -170
  3. package/lib/sh.js +257 -858
  4. package/package.json +2 -2
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@j-o-r/sh",
3
3
  "author": "Jorrit Duin <j-o-r@duin.work>",
4
4
  "type": "module",
5
- "version": "0.0.4",
5
+ "version": "1.0.0",
6
6
  "description": "Execute shell commands on Linux-based systems from javascript",
7
7
  "main": "lib/sh.js",
8
8
  "engines": {
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "scripts": {
12
12
  "test": "test/sh.js",
13
- "compile": "npx rollup src/sh.js --generatedCode es2015 --file lib/sh.js --format es --name SH",
13
+ "compile": "npx rollup src/sh.js --generatedCode es2015 --file lib/sh.js --format es --name SH && npm run types",
14
14
  "publish": "npm run release && npm publish --access public",
15
15
  "release": "npm pack --pack-destination=release",
16
16
  "types": "tsc lib/*.js --module nodenext --moduleResolution nodenext --declaration --allowJs --emitDeclarationOnly --outDir lib/",