diff --git a/.nowignore b/.nowignore new file mode 100644 index 0000000..5a3ac54 --- /dev/null +++ b/.nowignore @@ -0,0 +1,5 @@ +.idea +.nyc_output +node_modules +dist +coverage diff --git a/now.json b/now.json index cbe7afe..fd6e198 100644 --- a/now.json +++ b/now.json @@ -1,22 +1,13 @@ { - "name": "pegjs-website", - "type": "npm", - "env": { - "NODE_ENV": "production" - }, + "version": 2, + "name": "pegjs-next-website", "alias": [ - "www.pegjs.org", - "pegjs.org", - "pegjs.now.sh" + "next.pegjs.org" ], - "files": [ - "examples", - "packages", - "test", - "tools/benchmark", - "tools/bundle", - "website", - "package.json", - "yarn.lock" + "builds": [ + { + "src": "package.json", + "use": "@now/static-build" + } ] }