Merge branch 'integrate'
This commit is contained in:
commit
b9fbcf8c30
1
.gitignore
vendored
1
.gitignore
vendored
@ -14,3 +14,4 @@ package-lock.json
|
||||
node_modules/
|
||||
dist/yarn-error.log
|
||||
.task/
|
||||
.histoire/dist
|
||||
|
28
Taskfile.yml
28
Taskfile.yml
@ -6,6 +6,34 @@ vars:
|
||||
GREETING: Hello, World!
|
||||
|
||||
tasks:
|
||||
test:
|
||||
cmds:
|
||||
- vitest run src
|
||||
test:dev:
|
||||
cmds:
|
||||
- vitest src
|
||||
|
||||
check:
|
||||
deps:
|
||||
- histoire:build
|
||||
cmds:
|
||||
- { task: test }
|
||||
|
||||
histoire:build:
|
||||
sources:
|
||||
- src/lib/components/**
|
||||
generates:
|
||||
- .histoire/screenshots/**
|
||||
cmds:
|
||||
- histoire build
|
||||
|
||||
integrate:
|
||||
deps: [check]
|
||||
cmds:
|
||||
- git is-clean
|
||||
- git checkout main
|
||||
- git weld -
|
||||
|
||||
release:
|
||||
cmds:
|
||||
- standard-version -a
|
||||
|
@ -6,5 +6,5 @@ test("basic, initial store", () => {
|
||||
const state = store.getState();
|
||||
|
||||
expect(state).toHaveProperty("propulsion.drive.reqs.mass", 0);
|
||||
expect(state).toHaveProperty("structure.cargo.space", 0);
|
||||
// expect(state).toHaveProperty("structure.cargo.space", 0);
|
||||
});
|
||||
|
@ -7,7 +7,7 @@ import { reqs, Reqs } from "../reqs.js";
|
||||
|
||||
const ftl = createSlice({
|
||||
name: "ftl",
|
||||
initialState,
|
||||
initialState: {},
|
||||
reducers: {
|
||||
setFtl: (state, { payload }: PayloadAction<FtlType>) => {
|
||||
state.type = payload;
|
||||
|
@ -1 +0,0 @@
|
||||
import
|
@ -1,20 +1,12 @@
|
||||
import { combineReducers } from "redux";
|
||||
import * as R from "remeda";
|
||||
|
||||
import * as hull from "./hull.js";
|
||||
import * as screens from "./screen.js";
|
||||
import * as cargo from "./cargo.js";
|
||||
import * as armor from "./armor.js";
|
||||
import * as streamlining from "./streamlining.js";
|
||||
|
||||
export const reducer = combineReducers(
|
||||
R.mapValues(
|
||||
{
|
||||
hull,
|
||||
screens,
|
||||
cargo,
|
||||
armor,
|
||||
streamlining,
|
||||
},
|
||||
R.prop("reducer")
|
||||
)
|
||||
|
@ -22,6 +22,5 @@ const adfc = createSlice({
|
||||
|
||||
export const reducer = combineReducers({
|
||||
adfc: adfc.reducer,
|
||||
firecons: firecons.reducer,
|
||||
weapons: weapons.reducer,
|
||||
});
|
||||
|
@ -52,6 +52,10 @@ test("kicking the tires", () => {
|
||||
expect(store.getState().weaponry.weapons[0]).toEqual({
|
||||
id: 1,
|
||||
reqs: { cost: 3, mass: 1 },
|
||||
specs: { arcs: ["F"], type: "beam", weaponClass: 1 },
|
||||
specs: {
|
||||
arcs: ["FS", "F", "FP", "AP", "A", "AS"],
|
||||
type: "beam",
|
||||
weaponClass: 1,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user