Skip to content

Commit

Permalink
Fix Production build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikthecook committed Dec 15, 2017
1 parent f440cb8 commit 64a2539
Show file tree
Hide file tree
Showing 389 changed files with 31,210 additions and 68,090 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
@@ -0,0 +1,13 @@
# Editor configuration, see http://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = 0
trim_trailing_whitespace = false
43 changes: 43 additions & 0 deletions .gitignore
@@ -0,0 +1,43 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/dist
/tmp

# dependencies
/node_modules

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

# misc
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
/config/gulp-tasks/README.md

# e2e
/e2e/*.js
/e2e/*.map

# System Files
.DS_Store
Thumbs.db
27 changes: 27 additions & 0 deletions .travis.yml
@@ -0,0 +1,27 @@
sudo: required
dist: trusty

#install google chrome, using addons
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable

language: node_js
node_js:
- "6"

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g gulp-cli

script: gulp test:ci

after_success: gulp coveralls

cache:
yarn: true

38 changes: 38 additions & 0 deletions .yo-rc.json
@@ -0,0 +1,38 @@
{
"generator-ngx-library": {
"version": "5.3.0",
"authorName": "MetaMagic Global",
"authorEmail": "xserviceadmin@metamagic.in",
"githubUsername": "metamagicglobal",
"githubRepoName": "amexio",
"projectName": "amexio-ng-extensions",
"projectVersion": "0.0.1",
"projectDescription": "Angular library built with ❤ using ngx-library yeoman generator.",
"projectKeywords": [
"amexio",
"metamagic",
"angular",
"ng",
"ng5",
"html",
"js",
"css"
],
"ngVersion": "5.0.0",
"ngModules": [
"core",
"common",
"forms",
"http",
"language-service",
"platform-browser"
],
"otherDependencies": [],
"dependenciesRange": "^",
"ngPrefix": "amexio",
"useGreenkeeper": true,
"useCompodoc": true,
"enforceNgGitCommitMsg": true,
"exclusions": []
}
}
Empty file added CHANGELOG.md
Empty file.
22 changes: 22 additions & 0 deletions LICENSE
@@ -0,0 +1,22 @@
The MIT License (MIT)

Copyright (c) 2017 MetaMagic Global

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 comments on commit 64a2539

Please sign in to comment.