Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
okwolf committed Feb 4, 2022
1 parent 384b8bc commit fcdbc38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyperapp-freeze",
"version": "0.2.0",
"version": "0.3.0",
"description": "Deep-freeze your Hyperapp state to keep you honest about immutability",
"main": "dist/freeze.js",
"type": "module",
Expand Down
5 changes: 5 additions & 0 deletions release.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { execSync } from "child_process";
import packageJson from "./package.json";
import { fileURLToPath } from "url";
import { dirname } from "path";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const exec = command => execSync(command, { encoding: "utf8" }).trim();

const exitWithError = error => {
Expand Down

0 comments on commit fcdbc38

Please sign in to comment.