Socket
Book a DemoInstallSign in
Socket

@wegolook/task-definitions

Package Overview
Dependencies
Maintainers
11
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wegolook/task-definitions

task-definitions is a Javascript library for storing task types, groupQueues, and statuses.

latest
npmnpm
Version
3.3.0
Version published
Maintainers
11
Created
Source

@wegolook/task-definitions

task-definitions is a Javascript library for storing task types, groupQueues, and statuses.

NPM Publication

To prepare for this project to be published to npm, the following should be done. Tagging in gitlab will publish to npm.

  • Update the package.json version number to the desired number.
  • Update packages and the package-lock version number.
    npm install
    
  • Build the project.
    npm run-script build
    
  • Commit all changes including the dist/ directory and create a MR.

Installation

Use the package manager npm to install task-definitions.

npm install --save @wegolook/task-definitions

Usage es6

import TaskDefinitions as default from '@wegolook/task-definitions'

TaskDefinitions.types // ['type1', 'type2']
TaskDefinitions.groupQueues // ['groupQueue1', 'groupQueue2']
TaskDefinitions.statuses // ['status1', 'status2']

Usage es5

const TaskDefinitions = require('@wegolook/task-definitions');

TaskDefinitions.types // ['type1', 'type2']
TaskDefinitions.groupQueues // ['groupQueue1', 'groupQueue2']
TaskDefinitions.statuses // ['status1', 'status2']

FAQs

Package last updated on 24 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts