@xnoxs/flux-lang 3.4.2 → 3.4.3

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/src/self/pkg.js CHANGED
@@ -118,13 +118,11 @@ function cmdRemove(names, opts) {
118
118
  for (const name of names) {
119
119
  let found = false;
120
120
  if ((pkg.dependencies && pkg.dependencies[name])) {
121
- delete;
122
- pkg.dependencies[name];
121
+ delete pkg.dependencies[name];
123
122
  found = true;
124
123
  }
125
124
  if ((pkg.devDependencies && pkg.devDependencies[name])) {
126
- delete;
127
- pkg.devDependencies[name];
125
+ delete pkg.devDependencies[name];
128
126
  found = true;
129
127
  }
130
128
  if (found) {