setup-kubectl/node_modules/get-package-type
github-actions[bot] 7ad2aa66bb
Add node modules and new code for release (#39)
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
2022-01-05 11:26:06 -05:00
..
async.cjs Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
cache.cjs Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
CHANGELOG.md Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
index.cjs Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
is-node-modules.cjs Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
LICENSE Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
package.json Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
README.md Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00
sync.cjs Add node modules and new code for release (#39) 2022-01-05 11:26:06 -05:00

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.