Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.13 KB

File metadata and controls

28 lines (22 loc) · 1.13 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

3.0.0 - 2025-10-17

Added

  • TypeScript declarations (index.d.ts) covering:
    • Callable default export with overloads (module name or defaults object).
    • Static members: assign, arg_options, print_help, isProduction, production, development, enableFileReadWrite.
    • Minimal event typings (on, resetChanges) compatible with data-context.
  • GitHub Issue templates: bug report, feature request, question, and config.

Changed

  • Package metadata:
    • Bumped version to 3.0.0.
    • Updated scripts.test to node index.test.js.
    • Ensured browser.js is included in published files (kept exports mapping for CJS/ESM/browser).

Notes

  • Public API remains functionally compatible with the 3.x beta line.
  • When using ESM, import the default export:
    • import configSets from 'config-sets'
  • When using CommonJS:
    • const configSets = require('config-sets')