prep for alpha.2

This commit is contained in:
Yanick Champoux 2024-08-08 11:51:49 -04:00
parent 590aeef770
commit 9420e7af91
4 changed files with 10 additions and 10 deletions

View File

@ -7,20 +7,22 @@ vars:
tasks:
pack:
desc: bundle the distro
deps: [build, checks]
cmds:
- npm pack --pack-destination releases
build: tsc
build:
sources:
- src/**/*.ts
generates:
- dist/**/*.js
cmds:
- tsc
checks:
deps: [test, build]
prepare:
desc: build and bundle the package
cmds:
- { task: build }
- { task: pack }
integrate:
deps: [checks]
cmds:

View File

@ -25,7 +25,7 @@
"scripts": {
"docsify:serve": "docsify serve docs"
},
"version": "4.0.0-alpha.1",
"version": "4.0.0-alpha.2",
"repository": {
"type": "git",
"url": "git+https://github.com/yanick/updux.git"

View File

@ -1,5 +1,4 @@
import { test, expect } from 'vitest';
import { expectTypeOf } from 'expect-type';
import Updux from './Updux.js';
import { buildEffectsMiddleware } from './effects.js';
import { createAction, withPayload } from './index.js';

View File

@ -1,5 +1,4 @@
import { createAction } from '@reduxjs/toolkit';
import { expectTypeOf } from 'expect-type';
import { test, expect } from 'vitest';
import Updux from './Updux.js';