Skip to content

Commit

Permalink
Merge pull request #24 from fabrix-app/v1.5
Browse files Browse the repository at this point in the history
[fix] compile step
  • Loading branch information
scott-wyatt authored Sep 23, 2018
2 parents 986e276 + 2a1dd69 commit c3d2893
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fabrix/fabrix",
"version": "1.5.4",
"version": "1.5.5",
"description": "Strongly Typed Modern Web Application Framework for Node.js",
"keywords": [
"framework",
Expand All @@ -23,13 +23,13 @@
"graphql"
],
"scripts": {
"build": "npm run archetype && tsc -p ./lib/tsconfig.release.json",
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"test": "npm run clean && npm run lint && npm run build && nyc mocha",
"test-performance": "mocha test-performance",
"prepublishOnly": "npm run compile",
"compile": "npm run clean && npm run build",
"compile": "npm run clean && npm run archetype && npm run build",
"clean": "rm -rf dist",
"archetype": "copyfiles -u 1 -a ./lib/archetype/* -a ./lib/archetype/**/* -a ./lib/archetype/**/**/* -a ./lib/archetype/**/**/**/* ./dist/",
"ci": "cd .. && ci"
Expand Down

0 comments on commit c3d2893

Please sign in to comment.