1. get-package-type
Determine the `package.json#type` which applies to a location
get-package-type
Package: get-package-type
Created by: cfware
Last modified: Fri, 09 Jun 2023 21:33:11 GMT
Version: 0.1.0
License: MIT
Downloads: 90,749,641
Repository: https://github.com/cfware/get-package-type

Install

npm install get-package-type
yarn add get-package-type

get-package-type NPM Version

Determine the package.json#type which applies to a location.

Usage

 const getPackageType = require('get-package-type');

(async () => {
  console.log(await getPackageType('file.js'));
  console.log(getPackageType.sync('file.js'));
})();

This function does not validate the value found in package.json#type. Any truthy value
found will be returned. Non-truthy values will be reported as commonjs.

The argument must be a filename.

 // This never looks at `dir1/`, first attempts to load `./package.json`.
const type1 = await getPackageType('dir1/');

// This attempts to load `dir1/package.json`.
const type2 = await getPackageType('dir1/index.cjs');

The extension of the filename does not effect the result. The primary use case for this
module is to determine if myapp.config.js should be loaded with require or import.

RELATED POST

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Enhancing Vue.js Development: Harnessing the Potential of Vue-Loader

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Simplify Data Validation in Vue.js: A Step-by-Step Guide to Using Regex

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Troubleshooting Made Easy: Common Issues and Solutions with vue-loader Without vue-cli

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Optimizing Webpack 4 with Vue CLI 3: Disabling the Cache-Loader

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin

Step-by-Step Guide: How to Add a Function to Your Vuex Plugin