Skip to content

Commit 6fb2d2f

Browse files
committed
Init commit
0 parents  commit 6fb2d2f

31 files changed

+16312
-0
lines changed

.babelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"plugins": [
3+
["transform-es2015-modules-commonjs", { "spec": true }],
4+
"transform-flow-strip-types"
5+
]
6+
}

.flowconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[ignore]
2+
.*/node_modules/.*
3+
.*/tools/.*
4+
5+
[include]
6+
7+
[libs]
8+
9+
[options]

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
*.log
3+
projects/*/npm-shrinkwrap.json
4+
projects/*/yarn.lock
5+
lib

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "tools/npm"]
2+
path = tools/npm
3+
url = [email protected]:npm/npm.git
4+
[submodule "tools/yarn"]
5+
path = tools/yarn
6+
url = [email protected]:yarnpkg/yarn.git

LICENSE

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
BSD License
2+
3+
For Yarn software
4+
5+
Copyright (c) 2016-present, Yarn Contributors. All rights reserved.
6+
7+
Redistribution and use in source and binary forms, with or without modification,
8+
are permitted provided that the following conditions are met:
9+
10+
* Redistributions of source code must retain the above copyright notice, this
11+
list of conditions and the following disclaimer.
12+
13+
* Redistributions in binary form must reproduce the above copyright notice,
14+
this list of conditions and the following disclaimer in the documentation
15+
and/or other materials provided with the distribution.
16+
17+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
21+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
24+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

fixtures/ember-cli/npm-shrinkwrap.json

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fixtures/ember-cli/package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "ember-cli-test",
3+
"version": "1.0.0",
4+
"devDependencies": {
5+
"broccoli-asset-rev": "^2.4.5",
6+
"ember-ajax": "^2.4.1",
7+
"ember-cli": "^2.8.0",
8+
"ember-cli-app-version": "^2.0.0",
9+
"ember-cli-babel": "^5.1.7",
10+
"ember-cli-dependency-checker": "^1.3.0",
11+
"ember-cli-htmlbars": "^1.0.10",
12+
"ember-cli-htmlbars-inline-precompile": "^0.3.3",
13+
"ember-cli-inject-live-reload": "^1.4.1",
14+
"ember-cli-jshint": "^2.0.1",
15+
"ember-cli-qunit": "^3.0.1",
16+
"ember-cli-release": "^0.2.9",
17+
"ember-cli-sri": "^2.1.0",
18+
"ember-cli-test-loader": "^1.1.0",
19+
"ember-cli-uglify": "^1.2.0",
20+
"ember-data": "^2.9.0-beta.1",
21+
"ember-export-application-global": "^1.0.5",
22+
"ember-load-initializers": "^0.5.1",
23+
"ember-resolver": "^2.0.3",
24+
"ember-welcome-page": "^1.0.3",
25+
"loader.js": "^4.0.10"
26+
}
27+
}

0 commit comments

Comments
 (0)