ramm 0.0.20 → 0.0.21

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/dist/ramm.js CHANGED
@@ -126,8 +126,8 @@ var installSystemPackage = async (packageName) => {
126
126
  // src/systemd.ts
127
127
  var systemctlWordLangth = "systemctl ".length;
128
128
  var formatUserspace = (context, command) => {
129
- const userPart = context.userspace ? "--user" : "";
130
- return `systemctl ${userPart} ${command.slice(systemctlWordLangth)}`;
129
+ const userPart = context.userspace ? " --user " : "";
130
+ return "systemctl" + userPart + " " + command.slice(systemctlWordLangth);
131
131
  };
132
132
  var getSysyemdServiceName = (name) => {
133
133
  return `${name}.service`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramm",
3
3
  "type": "module",
4
- "version": "0.0.20",
4
+ "version": "0.0.21",
5
5
  "scripts": {
6
6
  "build": "bun build ./src/ramm.ts --target bun --outdir ./dist && cp ./src/bun.sh ./dist/bun.sh && bun run types",
7
7
  "types": "tsc --project tsconfig.types.json"
package/dist/a.js DELETED
@@ -1,3 +0,0 @@
1
- // a.ts
2
- console.log("WORLD");
3
- console.log("WORLD");