Skip to content

Commit

Permalink
fix: correct issue with relese
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 committed Jan 22, 2021
1 parent dc41656 commit b26d85a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.github
test/resource/**/*
dist
types
lib
coverage
jest.config.js
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,4 @@ jspm_packages/
*.ipr

# Project specific
types/
dist/
lib/
3 changes: 1 addition & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
test/resource/**/*
dist
types
lib
coverage
coverage.xml
*.snap
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@
"version": "1.1.6",
"description": "Freemarker Parser is a javascript implementation of the Freemarker",
"scripts": {
"build": "tsc",
"build": "tsc -b",
"test": "jest --coverage",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"watch": "tsc --watch"
"watch": "tsc -b --watch"
},
"main": "dist/index.js",
"main": "lib/index.js",
"files": [
"dist"
"lib"
],
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
"sourceMap": true,
"strict": true,
"target": "es2017",
"lib": ["es2017"]
"lib": ["es2017"],
"rootDir": "./src",
"outDir": "./lib"
},
"include": ["src/**/*.ts"]
}

0 comments on commit b26d85a

Please sign in to comment.