1.1.4 • Published 3 months ago

@vexip-ui/scripts v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

@vexip-ui/scripts

This package provides common scripts for vexip-ui components, it is published as a package that can be used standalone.

Install

pnpm i -D @vexip-ui/scripts

Usage

Release

Refer to Vexip UI release script.

import { logger, release, run } from '@vexip-ui/scripts'

release({
  pkgDir: 'Absolute package directory path',
  // isDryRun: true,
  // preId: 'beta'
  // publish: true,
  runTest: () => run('pnpm', ['test']),
  runBuild: () => run('pnpm', ['build']),
  runChangelog: () => run('pnpm', ['changelog'])
}).catch(error => {
  logger.error(error)
  process.exit(1)
})

Publish

Refer to Vexip UI publish script.

import { logger, publish } from '@vexip-ui/scripts'

publish({
  pkgDir: 'Absolute package directory path'
  // isDryRun: false,
  // releaseTag: 'bete'
}).catch(error => {
  logger.error(error)
  process.exit(1)
})
1.1.4

3 months ago

1.1.3

5 months ago

1.1.2

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.0.0

6 months ago