From 19e14ef1861e800d9071925583b2dbabbcf425fd Mon Sep 17 00:00:00 2001 From: Mario Mol Date: Wed, 14 Mar 2018 22:41:46 -0300 Subject: [PATCH] works!! --- .vscode/settings.json | 31 +++++++++++++++++++++++++++++++ demo/index.html | 18 ++++++++++++++++++ package.json | 4 +++- 3 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json create mode 100644 demo/index.html diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..8023c8d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,31 @@ +{ + "files.exclude": { + "dist": "explorerExcludedFiles", + "tmp": "explorerExcludedFiles", + "out-tsc": "explorerExcludedFiles", + "node_modules": "explorerExcludedFiles", + ".idea": "explorerExcludedFiles", + ".project": "explorerExcludedFiles", + ".classpath": "explorerExcludedFiles", + ".c9/": "explorerExcludedFiles", + "*.launch": "explorerExcludedFiles", + ".settings/": "explorerExcludedFiles", + "*.sublime-workspace": "explorerExcludedFiles", + ".vscode/*": "explorerExcludedFiles", + "!.vscode/settings.json": "explorerExcludedFiles", + "!.vscode/tasks.json": "explorerExcludedFiles", + "!.vscode/launch.json": "explorerExcludedFiles", + "!.vscode/extensions.json": "explorerExcludedFiles", + ".sass-cache": "explorerExcludedFiles", + "connect.lock": "explorerExcludedFiles", + "coverage": "explorerExcludedFiles", + "libpeerconnection.log": "explorerExcludedFiles", + "npm-debug.log": "explorerExcludedFiles", + "testem.log": "explorerExcludedFiles", + "typings": "explorerExcludedFiles", + "e2e/*.js": "explorerExcludedFiles", + "e2e/*.map": "explorerExcludedFiles", + ".DS_Store": "explorerExcludedFiles", + "Thumbs.db": "explorerExcludedFiles" + } +} \ No newline at end of file diff --git a/demo/index.html b/demo/index.html new file mode 100644 index 0000000..270ed45 --- /dev/null +++ b/demo/index.html @@ -0,0 +1,18 @@ + + + + + Testing dumping in html + + + + + + + + + + + + + \ No newline at end of file diff --git a/package.json b/package.json index b60ce4c..99fa5fd 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,12 @@ "deploy": "yarn build && now ./dist -p", "test": "ng test", "lint": "ng lint", - "e2e": "ng e2e" + "e2e": "ng e2e", + "demo": "http-server demo" }, "private": true, "dependencies": { + "@angular-devkit/core": "^0.4.5", "@angular/animations": "^5.1.0", "@angular/cdk": "^5.0.0", "@angular/common": "^5.0.0",