Skip to content

Commit

Permalink
v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
515hikaru committed Aug 29, 2020
1 parent 305391f commit df69497
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN npm ci && \
npm run build

FROM node:12.16.3-alpine3.11
ENV VERSION 0.6.2-dev
ENV VERSION 0.6.2
RUN mkdir -p /app/dist
RUN mkdir -p /app/bin
COPY --from=node /app/dist/main.js /app/dist/main.js
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pnovel",
"version": "0.6.2-dev",
"version": "0.6.2",
"description": "Light weight markup language for Pixiv novels",
"main": "src/eval.js",
"repository": "ssh://git@github.com/515hikaru/pnovel.git",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Command } from "commander"
import { parse } from "../parser/parser"
import { parseEntireDocument } from "./eval"

const VERSION = "v0.6.2-dev"
const VERSION = "v0.6.2"

// https://stackoverflow.com/questions/42056246/node-js-process-stdin-issues-with-typescript-tty-readstream-vs-readablestream
const stdin: any = process.stdin
Expand Down

0 comments on commit df69497

Please sign in to comment.