Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjesuiter committed Oct 22, 2024
1 parent 3d816c7 commit 82c95a8
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 25 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ await process.waitForExit();

# Changelog

## 1.0.0 - 2024-10-22

- first stable release
- add optional `cwd` option to `PuppetProcess` constructor - changes the current working directory of the spawned process

## 0.1.2 - 2024-10-21

- add example for @codemonument/puppet-process/errors module
Expand Down
50 changes: 25 additions & 25 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
{
"name": "@codemonument/puppet-process",
"version": "0.1.2",
"exports": {
".": "./src/shared/mod.ts",
"./deno": "./src/deno/mod.ts",
"./errors": "./src/errors/mod.ts"
},
"tasks": {
"dev": "deno run --watch main.ts",
"test": "deno test -A",
"test-docs": "deno test -A --doc",
"test-dev": "deno test -A --watch",
"dry": "deno publish --dry-run",
"prepare": "deno task test-docs && deno task dry"
},
"imports": {
"./": "./",
"/": "./",
"@codemonument/rx-webstreams": "jsr:@codemonument/rx-webstreams@^0.9.4",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.6",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/streams": "jsr:@std/streams@^1.0.7",
"@std/testing": "jsr:@std/testing@^1.0.3"
}
"name": "@codemonument/puppet-process",
"version": "1.0.0",
"exports": {
".": "./src/shared/mod.ts",
"./deno": "./src/deno/mod.ts",
"./errors": "./src/errors/mod.ts"
},
"tasks": {
"dev": "deno run --watch main.ts",
"test": "deno test -A",
"test-docs": "deno test -A --doc",
"test-dev": "deno test -A --watch",
"dry": "deno publish --dry-run",
"prepare": "deno task test-docs && deno task dry"
},
"imports": {
"./": "./",
"/": "./",
"@codemonument/rx-webstreams": "jsr:@codemonument/rx-webstreams@^0.9.4",
"@std/assert": "jsr:@std/assert@1",
"@std/async": "jsr:@std/async@^1.0.6",
"@std/path": "jsr:@std/path@^1.0.6",
"@std/streams": "jsr:@std/streams@^1.0.7",
"@std/testing": "jsr:@std/testing@^1.0.3"
}
}

0 comments on commit 82c95a8

Please sign in to comment.