Skip to content

Commit 69e3464

Browse files
committed
Initial import
0 parents  commit 69e3464

33 files changed

+1752
-0
lines changed

.editorconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.{ts,tsx}]
2+
indent_size = 2
3+
quote_type = single

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
node_modules/
3+
.*.swp
4+
generators/app/index.js

.npmignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.idea/
2+
.editorconfig
3+
.gitignore
4+
.npmignore
5+
circle.yml
6+
tsconfig.json
7+
src/
8+
yarn.lock

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2017 Kevin Verdieck
2+
3+
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:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
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.

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# @nomcopter/generator-typescript-react
2+
[![CircleCI](SHIELDS IO LINK)](CIRCLE LINK)
3+
[![npm](SHIELDS IO LINK)](NPM PACKAGE LINK)
4+
5+
An opinionated Yeoman Generator for a Typescript + React ready build system.
6+
7+
## Usage
8+
9+
## Upgrade Considerations / Changelog
10+
11+
See [Releases](https://github.com/palantir/react-mosaic/releases)
12+
13+
## License
14+
[MIT](./LICENSE)

circle.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
machine:
2+
node:
3+
version: 6.5.0
4+
dependencies:
5+
pre:
6+
- npm install -g yarn
7+
- yarn config set cache-folder /home/ubuntu/.cache/yarn
8+
cache_directories:
9+
- "/home/ubuntu/.cache/yarn"
10+
- "node_modules"
11+
override:
12+
- yarn install --frozen-lockfile
13+
deployment:
14+
npm-publish:
15+
tag: /v[0-9]+(\.[0-9]+){2}(-rc[0-9]+)?/
16+
owner: nomcopter
17+
commands:
18+
- touch .npmrc
19+
- printf "\n$NPM_REGISTRY_CREDS\n" >> .npmrc
20+
- yarn run build
21+
- npm publish
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[*.{ts,tsx}]
2+
indent_size = 2
3+
quote_type = single
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/
2+
node_modules/
3+
lib/
4+
/<%= kebabCaseName %>.css*
5+
.*.swp
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.idea/
2+
.editorconfig
3+
.gitignore
4+
.npmignore
5+
circle.yml
6+
tsconfig*.json
7+
demo/
8+
docs/
9+
webpack/
10+
yarn.lock

generators/app/templates/_LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2017 Kevin Verdieck
2+
3+
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:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
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 commit comments

Comments
 (0)