Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@sanity/pkg-utils
Advanced tools
Simple utilities for modern npm packages.
npm install @sanity/pkg-utils -D
# Initialize a new package
pnpx @sanity/pkg-utils@latest init my-package
# In a Node.js package directory with `package.json` present
# Check the package
pkg-utils check
# Build the package
pkg-utils build
# Watch the package
pkg-utils watch
Run pkg-utils -h
for more information on CLI usage.
@sanity/pkg-utils
reads most of its configuration from package.json
. But sometimes you need more
control. You may then add a configuration file named package.config.ts
(or .js
, .cjs
, or
.mjs
).
// package.config.ts
import {defineConfig} from '@sanity/pkg-utils'
export default defineConfig({
extract: {
rules: {
// do not require internal members to be prefixed with `_`
'ae-internal-missing-underscore': 'off',
},
},
// the path to the tsconfig file for distributed builds
tsconfig: 'tsconfig.dist.json',
})
bundles
PkgBundle[]
undefined
An array of entry points to bundle. This is useful if you want to bundle something that should not be exported by the package, e.g. CLI scripts or Node.js workers.
define
Record<string, string | number | boolean | null | undefined>
{}
An object defining globals within the package.
dist
string
'./dist'
The path to the directory to which bundle and chunk files should be written.
exports
PkgConfigProperty<PkgExports>
"exports"
in package.json
Override or modify the value of the exports
before it’s parsed internally.
extract
{
rules?: {
'ae-incompatible-release-tags'?: PkgRuleLevel
'ae-internal-missing-underscore'?: PkgRuleLevel
'ae-missing-release-tag'?: PkgRuleLevel
}
}
undefined
Configure the level of reporting of API Extractor (which is used to bundle the type definitions, as well as lint the TSDoc of the package).
external
string[]
[]
Packages to exclude from bundles.
jsx
'transform' | 'preserve' | 'automatic'
'automatic'
Strategy for bundling JSX.
jsxFactory
string
'createElement'
The name of the function that creates JSX elements.
jsxFragment
string
'Fragment'
The name of JSX fragment elements.
jsxImportSource
string
'react'
The name of the library from which to import JSX factory and fragment names.
minify
boolean
false
Whether to minify the bundled JavaScript.
rollup.plugins
PkgConfigProperty<RollupPlugin[]>
[]
Rollup plugins to load when bundling.
runtime
'*' | 'browser' | 'node'
'*'
Default runtime of package exports
sourcemap
boolean
true
Whether to include source map files.
src
string
'./src'
The path to the directory in which source code is located.
tsconfig
string
'tsconfig.json'
The path to the TypeScript configuration file.
MIT
FAQs
Simple utilities for modern npm packages.
The npm package @sanity/pkg-utils receives a total of 30,720 weekly downloads. As such, @sanity/pkg-utils popularity was classified as popular.
We found that @sanity/pkg-utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 70 open source maintainers collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.