Socket
Socket
Sign inDemoInstall

asset-database_utils

Package Overview
Dependencies
14
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    asset-database_utils

This repository contains some tools for the Consilio platform, to help with the calculation and conversion of field values.


Version published
Maintainers
1
Install size
0.970 MB
Created

Readme

Source

SPG Drycooling utils

This repository contains some tools for the Consilio platform, to help with the calculation and conversion of field values.

Repository structure

The different tools can be found in the packages directory.

Each package is a separate distributable set of tools with individual version and dependencies.

To add a new package, simply create a new root-level folder in the packages directory and add a package.json and README.md. Source files should be stored in the lib folder, the index.ts file will be automatically generated on build.

Build tools

The root package.json exposes 3 scripts:

NameCMDDescription
lintyarn lint <package>Lint a package with eslint
testyarn test <package>Test a package with jest
buildyarn build <package>Build a package

Linting

You can find the eslint configuration in the .eslintrc.js file in the root of the repository.

You can lint a specific package by providing its name:

yarn lint field-services

If you want to lint all packages, you can omit the package argument:

yarn lint

Testing

You can find the jest configuration in the jest.config.js file in the root of the repository.

You can test a specific package by providing its name:

yarn test field-services

If you want to test all packages, you can omit the package argument:

yarn test

If you want to watch the tests, add the --watchAll flag:

yarn test field-services --watchAll

yarn test --watchAll

Build

The build script executes several steps:

  1. Clear the dist folder and set up folders for the build targets.
  2. Build the index.ts file (using named-exports).
  3. Create webpack builds (by default for umd and commonjs targets).
  4. Build the package.json file (from the root as well as the package package.json files).
  5. Copy the README.md to the dist folder.
  6. Set permissions for executables (if any are present).

The build command takes 4 arguments:

yarn build <package> --cwd path/to/src --dist path/to/output --types
  • package: name of the package you want to build, can passed as the first argument or by using the --package flag (shorthand -p).
  • cwd: src folder to build (when using package this is set automatically to packages/<package>).
  • dist: output folder for builds (when omitted defaults to dist)
  • types: copy type declaration files to the dist folder (webpack already outputs declaration files to the dist folder so in most cases this is no longer needed).

Publishing a new version

To publish a new version, make sure you follow these steps:

  • bump the version in the package.json of the package you updated
    • follow semver rules: patch for fixes, minor for features, major for breaking changes
  • commit your new version using the build prefix
    • build(<package>): <version>, e.g. build(field-services): v2.1.1
  • tag your new version
    • git tag -a <package>@<version> -m "<package>@<version>", e.g. git tag -a field-services@v2.1.1 -m "field-services@v2.1.1"
  • make a new build so the version is updated in the dist as well
    • yarn build <package>, e.g. yarn build field-services
  • publish your new version
    • cd dist/<package> && yarn publish, e.g. cd dist/field-services && yarn publish

FAQs

Last updated on 14 Mar 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc