Skip to content

Commit

Permalink
Added placeholder content
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Dec 3, 2018
0 parents commit 59f5fc2
Show file tree
Hide file tree
Showing 10 changed files with 163 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line = lf
max_line_length = null
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Exclude compiled files
dist

# OS files
.DS_STORE

# npm files
node_modules
yarn.lock
*.log

# Editor files
.idea
.vscode
*.sublime-project
*.sublime-workspace

.nyc_output
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src
tsconfig.json
*.tgz
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
language: node_js
if: tag IS blank
node_js:
- "8"
cache:
directories:
- node_modules
script:
- npm run test
- npm run build
before_deploy:
- >
if ! [ "$BEFORE_DEPLOY_RUN" ]; then
export BEFORE_DEPLOY_RUN=1;
git config --local user.name "$git_user";
git config --local user.email "$git_email";
git tag "$(node -p 'require(`./package.json`).version')";
fi
deploy:
- provider: npm
email: $auth_email
api_key: $auth_token
skip_cleanup: true
on:
branch: master
- provider: releases
api_key: $git_token
skip_cleanup: true
on:
branch: master
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 ZEISS Digital Innovation Partners

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.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Precise UI

[![Build Status](https://travis-ci.org/ZEISS/precise-ui.svg?branch=master)](https://travis-ci.org/ZEISS/precise-ui)
[![NPM](https://img.shields.io/npm/v/precise-ui.svg)](https://www.npmjs.com/package/precise-ui)
[![Node](https://img.shields.io/node/v/precise-ui.svg)](https://www.npmjs.com/package/precise-ui)
[![GitHub tag](https://img.shields.io/github/tag/ZEISS/precise-ui.svg)](https://github.com/ZEISS/precise-ui/releases)
[![GitHub issues](https://img.shields.io/github/issues/ZEISS/precise-ui.svg)](https://github.com/ZEISS/precise-ui/issues)

## License

Precise UI is released using the MIT license. For more information see the [LICENSE file](LICENSE).
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "precise-ui",
"version": "0.0.1",
"description": "",
"main": "dist/es6",
"typings": "dist/es6",
"scripts": {
"build": "tsc -t es6 -m es6 --outDir dist/es6 --declaration --inlineSourceMap --inlineSources",
"test": "node -v"
},
"keywords": [],
"engines": {
"node": ">=8.0.0"
},
"author": "ZEISS Digital Innovation Partners",
"devDependencies": {
"typescript": "^2.9.2"
},
"license": "MIT"
}
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export function hello() {
return 'Hello Precise UI!';
}
33 changes: 33 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"compilerOptions": {
"outDir": "dist",
"sourceMap": false,
"noImplicitAny": true,
"allowUnreachableCode": false,
"alwaysStrict": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"module": "commonjs",
"target": "es5",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2015",
"dom"
],
"jsx": "react",
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": false
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"src/**/*.test.tsx",
"src/**/*.test.ts"
]
}

0 comments on commit 59f5fc2

Please sign in to comment.