dokku-compose 0.9.0 → 0.9.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.
package/bin/dokku-compose CHANGED
@@ -1,4 +1,2 @@
1
- #!/usr/bin/env bash
2
- # Delegate to TypeScript implementation
3
- SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
4
- exec bun "${SCRIPT_DIR}/../src/index.ts" "$@"
1
+ #!/usr/bin/env node
2
+ import('../dist/index.js');
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "dokku-compose",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Docker Compose for Dokku — declare your entire server in a single YAML file.",
5
5
  "main": "dist/index.js",
6
6
  "exports": "./dist/index.js",
7
7
  "bin": {
8
- "dokku-compose": "./dist/index.js"
8
+ "dokku-compose": "./bin/dokku-compose"
9
9
  },
10
10
  "files": [
11
11
  "dist/",