Skip to content

Commit b0fc3e8

Browse files
committed
no relative
1 parent 6844515 commit b0fc3e8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

cli/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@playmint/ds-cli",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "cli client for interacting with downstream.game",
55
"main": "index.js",
66
"bin": {
@@ -12,6 +12,7 @@
1212
]
1313
},
1414
"scripts": {
15+
"prepack": "npm run build",
1516
"build": "rm -rf ./dist/contracts && mkdir ./dist/contracts && cp ../contracts/src/Actions/Actions.sol ./dist/contracts/IDownstream.sol && npx esbuild src/main.ts --bundle --outfile=dist/ds.js --platform=node --target=node12",
1617
"exec": "npm run build >/dev/null && ./dist/ds.js",
1718
"test": "echo \"Error: no test specified\" && exit 1"

contracts/src/rules/CombatRule.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pragma solidity ^0.8.13;
33

44
import {State, CompoundKeyDecoder} from "cog/State.sol";
55
import {Context, Rule} from "cog/Dispatcher.sol";
6-
import {CombatActionKind, CombatAction, Actions} from "../Actions/Actions.sol";
6+
import {CombatActionKind, CombatAction, Actions} from "@ds/actions/Actions.sol";
77

88
import {
99
Schema,

contracts/src/schema/Schema.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
pragma solidity ^0.8.13;
33

44
import {State, CompoundKeyEncoder, CompoundKeyDecoder} from "cog/State.sol";
5-
import {BiomeKind} from "../Actions/Actions.sol";
5+
import {BiomeKind} from "@ds/actions/Actions.sol";
66

77
interface Rel {
88
function Owner() external;

0 commit comments

Comments
 (0)