Skip to content

Commit

Permalink
fix: files not being shiped
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRamosAcosta committed Feb 9, 2022
1 parent 13beb34 commit 7d6ad19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@acid-tango/lokalise-downloader",
"version": "0.2.0",
"version": "0.2.1",
"description": "A simple npm package for downloading translations from Lokalise",
"main": "dist/fetcher.js",
"engines": {
Expand Down
3 changes: 1 addition & 2 deletions src/bin/lokalise-downloader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import { mkdirSync, writeFileSync } from "fs"
import { downloadLocalesAsJson } from "../fetcher"
import { Command, Option } from "commander"
import meta from "../../package.json"

const program = new Command()

Expand All @@ -28,7 +27,7 @@ program
"./src/locales",
),
)
.version(meta.version)
.version("0.2.1")

program.parse()

Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"esModuleInterop": true,
"moduleResolution": "node",
"isolatedModules": true,
"resolveJsonModule": true
"rootDir": "./src"
},
"exclude": ["node_modules", "dist"]
}

0 comments on commit 7d6ad19

Please sign in to comment.