1. @npmcli/template-oss
templated files used in npm CLI team oss projects
@npmcli/template-oss
Package: @npmcli/template-oss
Created by: npm
Last modified: Mon, 15 Apr 2024 21:18:49 GMT
Version: 4.21.4
License: ISC
Downloads: 21,565
Repository: https://github.com/npm/template-oss

Install

npm install @npmcli/template-oss
yarn add @npmcli/template-oss

@npmcli/template-oss

This module bundles the npm CLI team's basics for package development into a
single devDependency.

[!WARNING]
THESE CHANGES WILL OVERWRITE LOCAL FILES AND SETTINGS

[!IMPORTANT]
This package does not follow semantic versioning for its API. This package is designed to be installed with --save-exact and therefore will make breaking API changes outside of major versions, including engines narrowing. Major versions are reserved for breaking changes to files written to a repo by this package.

Configuration

Configure the use of @npmcli/template-oss in your package.json using the
templateOSS property.

 {
  name: 'my-package',
  templateOSS: {
    // copy repo specific files for the root pkg
    rootRepo: true,
    // modify package.json and copy module specific files for the root pkg
    rootModule: true,
    // copy repo files for all workspaces
    workspaceRepo: true,
    // copy module files for all workspaces
    workspaceModule: true,
    // filter allowed workspaces by package name
    // defaults to all workspaces
    workspaces: ['workspace-package-name'],
    // The rest of the config is passed in as variables
    // that can be used to template files in the content
    // directory. Some common ones are:
    // Turns off ci in windows
    windowsCI: false,
    // Change the versions tested in CI and engines
    ciVersions: ['10', '12', '14']
  }
}

Workspaces

Individual workspaces can also supply their own config, if they are included by
the root package's templateOSS.workspaces array. These settings will override
any of the same settings in the root.

 {
  name: 'my-workspace',
  templateOSS: {
    // copy repo files for this workspace
    workspaceRepo: true,
    // copy module files for this workspace
    moduleRepo: true,
    // Changes windowsCI setting for this workspace
    windowsCI: false,
  }
}

Content

All the templated content for this repo lives in
lib/content/. The index.js file
controls how and where this content is written.

Content files can be overwritten or merged with the existing target file.
Merging is only supported for some types of files (ini, yaml, json, package.json)

Each content file goes through the following pipeline:

  1. It is read from its source location
  2. It is compiled using Handlebars with the variables from each packages's
    config (with some derived values generated in config.js)
  3. It is parsed based on its file extension in
    parser.js
  4. Additional logic is applied by the parser
  5. It is written to its target location

Usage

This package provides two bin scripts:

template-oss-check

This will check if any of the applied files differ from the target content,
or if any of the other associated checks fail. The diffs of each file or check
will be reported with instructions on how to fix it.

template-oss-apply [--force]

This will write all source files to their target locations in the cwd. It will
do nothing if package.json#templateOSS.version is the same as the version
being run. This can be overridden by --force.

This is the script that is run on postinstall.

Extending

lib/apply

This directory is where all the logic for applying files lives. It should be
possible to add new files without modifying anything in this directory. To add a
file, add the templated file to lib/content/$FILENAME and an entry for it in
lib/content/index.js depending on where and when it should be written (root vs
workspace, repo vs module, add vs remove, etc).

lib/check

All checks live in this directory and have the same signature. A check must be
added to lib/check/index.js for it to be run.

Generic vs specific extensions

This repo is designed so that all (fine, most) of the logic in lib/ is generic
and could be applied across projects of many different types.

The files in lib/content are extremely specific to the npm CLI. It would be
trivial to swap out this content directory for a different one as it is only
referenced in a single place in lib/config.js. However, it's not currently
possible to change this value at runtime, but that might become possible in
future versions of this package.

Testing

The files test/release/release-manager.js and test/release/release-please.js
use recorded nock fixtures to generate snapshots. To update these fixtures run:

 GITHUB_TOKEN=$(gh auth token) npm run test:record --- test/release/release-{please,manager}.js

If you only need to update fixtures for one, it's best to only run that single
test file.

test/release/release-please.js

This test file uses the repo npm/npm-cli-release-please to record its
fixtures. It expects https://github.com/npm/npm-cli-release-please to be
checked out in a sibling directory to this repo. It also needs the current
branch set to template-oss-mock-testing-branch-do-not-delete before the tests
are run.

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