🚨 Active Supply Chain Attack:node-ipc Package Compromised.Learn More
Socket
Book a DemoSign in
Socket

@goldstack/utils-log

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@goldstack/utils-log - npm Package Compare versions

Comparing version
0.3.30
to
0.3.31
+4
-5
package.json
{
"name": "@goldstack/utils-log",
"version": "0.3.30",
"version": "0.3.31",
"description": "Utilities for emitting logs.",

@@ -31,12 +31,11 @@ "keywords": [

"prepublishOnly": "yarn run build",
"publish": "utils-git changed --exec \"yarn npm publish $@\"",
"publish": "yarn npm publish --tolerate-republish",
"test": "jest --passWithNoTests --config=./jest.config.js --runInBand",
"version:apply": "utils-git changed --exec \"yarn version $@ && yarn version apply\"",
"version:apply": "yarn version $@ && yarn version apply",
"version:apply:force": "yarn version $@ && yarn version apply"
},
"dependencies": {
"@goldstack/utils-cli": "0.3.28"
"@goldstack/utils-cli": "0.3.29"
},
"devDependencies": {
"@goldstack/utils-git": "0.2.23",
"@swc/core": "^1.15.8",

@@ -43,0 +42,0 @@ "@swc/jest": "^0.2.39",

@@ -0,3 +1,20 @@

[![npm version](https://badge.fury.io/js/%40goldstack%2Futils-log.svg)](https://badge.fury.io/js/%40goldstack%2Futils-log)
# Goldstack Log Utilities
Very simple log utility used in the [Goldstack template framework](https://github.com/goldstack/goldstack/tree/master/workspaces/templates-lib#goldstack-template-framework).
This utility has been developed for the [Goldstack](https://goldstack.party) starter project builder. Check it out for starting your next project ❤️
## Installation
```bash
npm install @goldstack/utils-log
```
## Usage
```typescript
import { log } from '@goldstack/utils-log';
log('Hello World');
```