rsformat 1.2.0 → 1.2.1

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 (2) hide show
  1. package/lib/format.js +0 -1
  2. package/package.json +2 -1
package/lib/format.js CHANGED
@@ -179,7 +179,6 @@ function formatParam(param, format) {
179
179
  let param_colored = "";
180
180
  // embed RsStrings directly
181
181
  if (param instanceof String && format.type != '?') {
182
- console.log("rsString passed");
183
182
  param_colored = param.toString(true);
184
183
  param = param.toString(false);
185
184
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rsformat",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Formatting/printing library for JavaScript that takes after rust's string formatting ",
5
5
  "files": [
6
6
  "lib",
@@ -34,6 +34,7 @@
34
34
  },
35
35
  "scripts": {
36
36
  "build": "tsc",
37
+ "prepublish": "pnpm build",
37
38
  "test": "echo \"Error: no test specified\" && exit 1"
38
39
  }
39
40
  }