New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@mickmister/apps

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@mickmister/apps

Shared type definitions used by the Mattermost web app

unpublished
latest
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

Mattermost Types

This package contains shared type definitions used by the Mattermost web app and related projects.

Usage

For technologies that support subpath exports, such as Node.js, Webpack, and Babel, you can import these types directly from individual files.

import {UserProfile} from '@mattermost/types/users';

For technologies that don't support that yet, you can add an alias in its package resolution settings to support that.

TypeScript

In the tsconfig.json, you can use compilerOptions.paths to add that alias. This also requires a compilerOptions.baseUrl if you haven't set that already.

{
    "compilerOptions": {
        "baseUrl": ".",
        "paths": {
            "@mattermost/types/*": ["node_modules/@mattermost/types/lib/*"]
        }
    }
}

Jest

In your Jest config, you can use the moduleNameMapper field to add that alias.

{
    "moduleNameMapper": {
        "^@mattermost/types/(.*)$": "<rootDir>/node_modules/@mattermost/types/lib/$1"
    }
}

Compilation and Packaging

As a member of Mattermost with write access to our NPM organization, you can build and publish this package by running the following commands:

npm run build --workspace=packages/types
npm publish --workspace=packages/types

Make sure to increment the version number in package.json first! You can add -0, -1, etc for pre-release versions.

Keywords

mattermost

FAQs

Package last updated on 17 Nov 2022

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