@taqueria/toolkit 0.12.0 → 0.12.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/index.ts +6 -6
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -36,12 +36,12 @@ import * as Environment from '@taqueria/protocol/Environment';
36
36
  // }
37
37
  // };
38
38
 
39
- const sendErr = (msg: string, newline = true) => {
40
- if (!msg || msg.length === 0) return;
41
- return newline
42
- ? console.error(msg)
43
- : process.stderr.write(msg) as unknown as void;
44
- };
39
+ // const sendErr = (msg: string, newline = true) => {
40
+ // if (!msg || msg.length === 0) return;
41
+ // return newline
42
+ // ? console.error(msg)
43
+ // : process.stderr.write(msg) as unknown as void;
44
+ // };
45
45
 
46
46
  // const getConfigJSON = async (): Promise<Config.t> => {
47
47
  // const projectAbspath = await getProjectAbsPath();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taqueria/toolkit",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "A TypeScript library for NodeJS to work with Taqueria projects",
5
5
  "main": "./index.js",
6
6
  "source": "./index.ts",