Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Releases: iamssen/rocket-punch

v2.2.1

12 Sep 06:04
Compare
Choose a tag to compare

Fixed

  • use last value if it inserts multiple options

v2.2.0

12 Sep 06:01
Compare
Choose a tag to compare

Updated

  • TypeScript 4.0

v2.1.1

12 Sep 06:01
Compare
Choose a tag to compare

Fixed

  • Change onMessage to be optional

v2.1.0

12 Sep 06:01
Compare
Choose a tag to compare

Added

  • It can change sourceRoot instead of src directory
    • CLI rocket-punch build --source-root .
    • API build({ sourceRoot: '.' })

v2.0.0

12 Sep 06:00
Compare
Choose a tag to compare

Breaking Changes

  • Change default output directory from /dist to /out/packages
  • ⚠️ Remove .package.ts rule
  • Add transformPackageJson, transformCompilerOptions, transformCompilerHost and emitCustomTransformers options to build(). these options replace the old .package.ts file.

Added

  • Add an option rocket-punch build --svg default

Fixed

  • Exclude from result of rocket-punch view if can't get package metadata from NPM registry
  • Guide detailed paths when catch a circular dependency in @ssen/collect-dependencies/getPackagesOrder
  • Fix regex string of moduleNameMapper of jest-preset from ".(css|scss)$": to "\\.(css|scss)$" for prevent error on import "postcss"

v1.3.1

12 Sep 06:00
Compare
Choose a tag to compare

Added

  • Add fetch() support to rocket-punch/jest-preset
  • Improve message decoration
  • Add rocket-punch doctor command for check configs

Fixed

  • Clear symlink if that is already exists

v1.1.0

12 Sep 05:59
Compare
Choose a tag to compare

Added

  • Add jest preset
// jest.config.js on your project
const jestPreset = require('rocket-punch/jest-preset');

module.exports = {
  ...jestPreset,
  
  // customize your config
  collectCoverageFrom: [
    ...jestPreset.collectCoverageFrom,
    '!src/@rocket-scripts/*/commands.ts',
    '!src/@rocket-scripts/cli/**',
  ],
};

v1.0.0: docs: update README

12 Sep 05:59
Compare
Choose a tag to compare