Skip to content

Commit ec04889

Browse files
committed
Initial Commit from Ember CLI v2.10.0
_..., ,:^;,...; -+===;. ,,--++====++-,,, .: /....., :::::~+++++#:,+#++++++++++++++++++#*..: /,...... (,,,,,,::=+++##++++++++++++++++++++++#. :....../ ...,,,,,::++++++++++++++++++++++++++++++*..,...: *..+...,#@@@@@@@@@++++++++++++++++++++++#*....* @#,;##############@@@+*+#@@@@@@@@@@#*++#..< *@##@@+,-*^^^*-+@####@@@######@@@#####@@,,,+ @#@* @#@@@@#@@+--*^^*--#@@@@@@# @#@. @# @##+++@#, .@@#@@ #@# @@ +@@++++#@@ @@ :@@ :@#* @#@++++++@#* #@ @@+ :*+@@#;,.__.+@#@+,-^^.++@# @@++ ;* :*@@@##@@@@;++r._j^.+@##@+,.__,,@@++. /* ........+++++++++++++#@@@@@###@@#++++, ,: ...,@@@#++===----==@@@####,,....+++++ .: ......@@##@\ ; :@####@,,...... +++. ; .........@###, ; ;xx#@;,,..... *;+, | ........,*;xxxx--^--=xxx,........ :+#; ; ......,,;xxxxxxxxxxxxx;,..... *+# ; ......,::xxxx;. ...... +. . *; ......... +### .... / ,. /:| ,. .+: ... ;##++##, . ,#. (..v..;*./ ** ## ###* .:*&&&+. \.,....<, #&+**==-..,,__ ;## ### :,*+&&&&&&&v+#&,,.._/ #&&&&*...,::,,. ##; ,##* .*****;:&&&&&&&&& ,+*+;~*..*** *.* ### ###* ******* *+#&;* ##,;## **** :, ** ##### ## ### ###, ######## .##### ;## ## ####### ;## #### ,###. ########## ######## ### #### ### ### ### ########## #### #### ,## ### #######* ### ,### ##############: ## ### #### ,## :#### ### ##; ########## ########### ## .## ,### ####### ##### :###### ###### .###### #### ## ### ### ######* :##### #### ############# #### ################ ######## ### #####* *#* #: :### *###* *#### #*
0 parents  commit ec04889

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+613
-0
lines changed

.bowerrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"directory": "bower_components",
3+
"analytics": false
4+
}

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
indent_style = space
14+
indent_size = 2
15+
16+
[*.hbs]
17+
insert_final_newline = false
18+
19+
[*.{diff,md}]
20+
trim_trailing_whitespace = false

.ember-cli

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
/**
3+
Ember CLI sends analytics information by default. The data is completely
4+
anonymous, but there are times when you might want to disable this behavior.
5+
6+
Setting `disableAnalytics` to true will prevent any data from being sent.
7+
*/
8+
"disableAnalytics": false
9+
}

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
7+
# dependencies
8+
/node_modules
9+
/bower_components
10+
11+
# misc
12+
/.sass-cache
13+
/connect.lock
14+
/coverage/*
15+
/libpeerconnection.log
16+
npm-debug.log*
17+
testem.log

.jshintrc

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"predef": [
3+
"document",
4+
"window",
5+
"-Promise"
6+
],
7+
"browser": true,
8+
"boss": true,
9+
"curly": true,
10+
"debug": false,
11+
"devel": true,
12+
"eqeqeq": true,
13+
"evil": true,
14+
"forin": false,
15+
"immed": false,
16+
"laxbreak": false,
17+
"newcap": true,
18+
"noarg": true,
19+
"noempty": false,
20+
"nonew": false,
21+
"nomen": false,
22+
"onevar": false,
23+
"plusplus": false,
24+
"regexp": false,
25+
"undef": true,
26+
"sub": true,
27+
"strict": false,
28+
"white": false,
29+
"eqnull": true,
30+
"esversion": 6,
31+
"unused": true
32+
}

.npmignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/bower_components
2+
/config/ember-try.js
3+
/dist
4+
/tests
5+
/tmp
6+
**/.gitkeep
7+
.bowerrc
8+
.editorconfig
9+
.ember-cli
10+
.gitignore
11+
.jshintrc
12+
.watchmanconfig
13+
.travis.yml
14+
bower.json
15+
ember-cli-build.js
16+
testem.js

.travis.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
language: node_js
3+
node_js:
4+
- "4"
5+
6+
sudo: false
7+
8+
cache:
9+
directories:
10+
- $HOME/.npm
11+
- $HOME/.cache # includes bowers cache
12+
13+
env:
14+
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
15+
- EMBER_TRY_SCENARIO=ember-lts-2.4
16+
- EMBER_TRY_SCENARIO=ember-lts-2.8
17+
- EMBER_TRY_SCENARIO=ember-release
18+
- EMBER_TRY_SCENARIO=ember-beta
19+
- EMBER_TRY_SCENARIO=ember-canary
20+
21+
matrix:
22+
fast_finish: true
23+
allow_failures:
24+
- env: EMBER_TRY_SCENARIO=ember-canary
25+
26+
before_install:
27+
- npm config set spin false
28+
- npm install -g bower
29+
- bower --version
30+
- npm install phantomjs-prebuilt
31+
- node_modules/phantomjs-prebuilt/bin/phantomjs --version
32+
33+
install:
34+
- npm install
35+
- bower install
36+
37+
script:
38+
# Usually, it's ok to finish the test scenario without reverting
39+
# to the addon's original dependency state, skipping "cleanup".
40+
- ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup

.watchmanconfig

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ignore_dirs": ["tmp", "dist"]
3+
}

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016
4+
5+
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:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
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: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# ember-cli-deploy-create-react-app
2+
3+
This README outlines the details of collaborating on this Ember addon.
4+
5+
## Installation
6+
7+
* `git clone <repository-url>` this repository
8+
* `cd ember-cli-deploy-create-react-app`
9+
* `npm install`
10+
* `bower install`
11+
12+
## Running
13+
14+
* `ember serve`
15+
* Visit your app at [http://localhost:4200](http://localhost:4200).
16+
17+
## Running Tests
18+
19+
* `npm test` (Runs `ember try:each` to test your addon against multiple Ember versions)
20+
* `ember test`
21+
* `ember test --server`
22+
23+
## Building
24+
25+
* `ember build`
26+
27+
For more information on using ember-cli, visit [https://ember-cli.com/](https://ember-cli.com/).

addon/.gitkeep

Whitespace-only changes.

app/.gitkeep

Whitespace-only changes.

bower.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "ember-cli-deploy-create-react-app",
3+
"dependencies": {
4+
"ember": "~2.10.0",
5+
"ember-cli-shims": "0.1.3"
6+
}
7+
}

config/ember-try.js

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*jshint node:true*/
2+
module.exports = {
3+
scenarios: [
4+
{
5+
name: 'ember-lts-2.4',
6+
bower: {
7+
dependencies: {
8+
'ember': 'components/ember#lts-2-4'
9+
},
10+
resolutions: {
11+
'ember': 'lts-2-4'
12+
}
13+
}
14+
},
15+
{
16+
name: 'ember-lts-2.8',
17+
bower: {
18+
dependencies: {
19+
'ember': 'components/ember#lts-2-8'
20+
},
21+
resolutions: {
22+
'ember': 'lts-2-8'
23+
}
24+
}
25+
},
26+
{
27+
name: 'ember-release',
28+
bower: {
29+
dependencies: {
30+
'ember': 'components/ember#release'
31+
},
32+
resolutions: {
33+
'ember': 'release'
34+
}
35+
}
36+
},
37+
{
38+
name: 'ember-beta',
39+
bower: {
40+
dependencies: {
41+
'ember': 'components/ember#beta'
42+
},
43+
resolutions: {
44+
'ember': 'beta'
45+
}
46+
}
47+
},
48+
{
49+
name: 'ember-canary',
50+
bower: {
51+
dependencies: {
52+
'ember': 'components/ember#canary'
53+
},
54+
resolutions: {
55+
'ember': 'canary'
56+
}
57+
}
58+
}
59+
]
60+
};

config/environment.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/*jshint node:true*/
2+
'use strict';
3+
4+
module.exports = function(/* environment, appConfig */) {
5+
return { };
6+
};

ember-cli-build.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*jshint node:true*/
2+
/* global require, module */
3+
var EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
4+
5+
module.exports = function(defaults) {
6+
var app = new EmberAddon(defaults, {
7+
// Add options here
8+
});
9+
10+
/*
11+
This build file specifies the options for the dummy test app of this
12+
addon, located in `/tests/dummy`
13+
This build file does *not* influence how the addon or the app using it
14+
behave. You most likely want to be modifying `./index.js` or app's build file
15+
*/
16+
17+
return app.toTree();
18+
};

index.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* jshint node: true */
2+
'use strict';
3+
4+
module.exports = {
5+
name: 'ember-cli-deploy-create-react-app'
6+
};

package.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "ember-cli-deploy-create-react-app",
3+
"version": "0.0.0",
4+
"description": "The default blueprint for ember-cli addons.",
5+
"keywords": [
6+
"ember-addon"
7+
],
8+
"license": "MIT",
9+
"author": "",
10+
"directories": {
11+
"doc": "doc",
12+
"test": "tests"
13+
},
14+
"repository": "",
15+
"scripts": {
16+
"build": "ember build",
17+
"start": "ember server",
18+
"test": "ember try:each"
19+
},
20+
"dependencies": {
21+
"ember-cli-babel": "^5.1.7"
22+
},
23+
"devDependencies": {
24+
"broccoli-asset-rev": "^2.4.5",
25+
"ember-ajax": "^2.4.1",
26+
"ember-cli": "2.10.0",
27+
"ember-cli-app-version": "^2.0.0",
28+
"ember-cli-dependency-checker": "^1.3.0",
29+
"ember-cli-htmlbars": "^1.0.10",
30+
"ember-cli-htmlbars-inline-precompile": "^0.3.3",
31+
"ember-cli-inject-live-reload": "^1.4.1",
32+
"ember-cli-jshint": "^2.0.1",
33+
"ember-cli-qunit": "^3.0.1",
34+
"ember-cli-release": "^0.2.9",
35+
"ember-cli-sri": "^2.1.0",
36+
"ember-cli-test-loader": "^1.1.0",
37+
"ember-cli-uglify": "^1.2.0",
38+
"ember-data": "^2.10.0",
39+
"ember-disable-prototype-extensions": "^1.1.0",
40+
"ember-export-application-global": "^1.0.5",
41+
"ember-load-initializers": "^0.5.1",
42+
"ember-resolver": "^2.0.3",
43+
"ember-welcome-page": "^1.0.3",
44+
"loader.js": "^4.0.10"
45+
},
46+
"engines": {
47+
"node": ">= 0.12.0"
48+
},
49+
"ember-addon": {
50+
"configPath": "tests/dummy/config"
51+
}
52+
}

testem.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/*jshint node:true*/
2+
module.exports = {
3+
"framework": "qunit",
4+
"test_page": "tests/index.html?hidepassed",
5+
"disable_watching": true,
6+
"launch_in_ci": [
7+
"PhantomJS"
8+
],
9+
"launch_in_dev": [
10+
"PhantomJS",
11+
"Chrome"
12+
]
13+
};

0 commit comments

Comments
 (0)