-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #805 from xg-wang/monorepo
- Loading branch information
Showing
347 changed files
with
2,363,988 additions
and
479 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"private": true, | ||
"version": "3.0.0-beta.2", | ||
"version": "3.1.2", | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:ember-fastboot/ember-cli-fastboot.git" | ||
|
@@ -10,9 +10,9 @@ | |
"test-packages/*" | ||
], | ||
"devDependencies": { | ||
"release-it": "^14.0.2", | ||
"release-it-lerna-changelog": "^2.4.0", | ||
"release-it-yarn-workspaces": "^1.5.0" | ||
"release-it": "^14.2.2", | ||
"release-it-lerna-changelog": "^3.1.0", | ||
"release-it-yarn-workspaces": "^2.0.0" | ||
}, | ||
"publishConfig": { | ||
"registry": "https://registry.npmjs.org" | ||
|
@@ -29,7 +29,8 @@ | |
], | ||
"additionalManifests": { | ||
"versionUpdates": [ | ||
"package.json" | ||
"package.json", | ||
"test-packages/*/package.json" | ||
], | ||
"dependencyUpdates": [ | ||
"package.json", | ||
|
@@ -46,5 +47,9 @@ | |
"tokenRef": "GITHUB_AUTH" | ||
}, | ||
"npm": false | ||
}, | ||
"volta": { | ||
"node": "12.19.0", | ||
"yarn": "1.22.5" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ember Cli FastBoot | ||
|
||
See the [main readme](../../README.md) or http://ember-fastboot.com/ for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/** | ||
test/fixtures/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
'use strict'; | ||
module.exports = { | ||
parserOptions: { | ||
ecmaVersion: 2017, | ||
}, | ||
extends: ['eslint:recommended', 'plugin:node/recommended'], | ||
plugins: ['node'], | ||
env: { | ||
node: true, | ||
es6: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['test/**/*-test.js'], | ||
env: { | ||
mocha: true, | ||
}, | ||
extends: ['plugin:mocha/recommended'], | ||
plugins: ['mocha'], | ||
}, | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x, 14.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: yarn install --frozen-lockfile | ||
- run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules | ||
.eslintcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// set the NODE_ENV to test if not already set, NODE_ENV=test changes the default worker count to 1 | ||
process.env.NODE_ENV = process.env.NODE_ENV || 'test'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.gitignore | ||
.eslintcache | ||
.eslintignore | ||
.eslintrc.js | ||
.travis.yml | ||
test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## v3.0.0 (2020-10-26) | ||
|
||
#### :boom: Breaking Change | ||
* [#124](https://github.com/ember-fastboot/fastboot-app-server/pull/124) Update FastBoot v3 ([@bobisjan](https://github.com/bobisjan)) | ||
* [#123](https://github.com/ember-fastboot/fastboot-app-server/pull/123) Drop Node 8 and 13 support ([@bobisjan](https://github.com/bobisjan)) | ||
|
||
#### :rocket: Enhancement | ||
* [#120](https://github.com/ember-fastboot/fastboot-app-server/pull/120) Remove legacy Node.js support leftovers ([@bobisjan](https://github.com/bobisjan)) | ||
* [#96](https://github.com/ember-fastboot/fastboot-app-server/pull/96) Expose `distPath` on `reload` event ([@nathanhammond](https://github.com/nathanhammond)) | ||
|
||
#### :memo: Documentation | ||
* [#49](https://github.com/ember-fastboot/fastboot-app-server/pull/49) Avoid `server.js` naming conflict ([@oskarrough](https://github.com/oskarrough)) | ||
* [#79](https://github.com/ember-fastboot/fastboot-app-server/pull/79) Adds notes to readme about overriding the workerCount ([@Duder-onomy](https://github.com/Duder-onomy)) | ||
* [#106](https://github.com/ember-fastboot/fastboot-app-server/pull/106) Add link to s3-notifier ([@allthesignals](https://github.com/allthesignals)) | ||
* [#115](https://github.com/ember-fastboot/fastboot-app-server/pull/115) Add link to fastboot-gcloud-storage-notifier in README ([@YoranBrondsema](https://github.com/YoranBrondsema)) | ||
* [#114](https://github.com/ember-fastboot/fastboot-app-server/pull/114) Add link to fastboot-gcloud-storage-downloader in README ([@YoranBrondsema](https://github.com/YoranBrondsema)) | ||
* [#122](https://github.com/ember-fastboot/fastboot-app-server/pull/122) Update README.md ([@wagenet](https://github.com/wagenet)) | ||
|
||
#### :house: Internal | ||
* [#128](https://github.com/ember-fastboot/fastboot-app-server/pull/128) Update linting setup ([@rwjblue](https://github.com/rwjblue)) | ||
* [#129](https://github.com/ember-fastboot/fastboot-app-server/pull/129) Update mocha to latest. ([@rwjblue](https://github.com/rwjblue)) | ||
* [#127](https://github.com/ember-fastboot/fastboot-app-server/pull/127) Update dependencies to latest. ([@rwjblue](https://github.com/rwjblue)) | ||
* [#126](https://github.com/ember-fastboot/fastboot-app-server/pull/126) Migrate to GitHub Actions. ([@rwjblue](https://github.com/rwjblue)) | ||
* [#125](https://github.com/ember-fastboot/fastboot-app-server/pull/125) Add release automation. ([@rwjblue](https://github.com/rwjblue)) | ||
* [#121](https://github.com/ember-fastboot/fastboot-app-server/pull/121) Migrate to ESLint ([@bobisjan](https://github.com/bobisjan)) | ||
|
||
#### Committers: 8 | ||
- Greg Larrenaga ([@Duder-onomy](https://github.com/Duder-onomy)) | ||
- Jan Bobisud ([@bobisjan](https://github.com/bobisjan)) | ||
- Matt Gardner ([@allthesignals](https://github.com/allthesignals)) | ||
- Nathan Hammond ([@nathanhammond](https://github.com/nathanhammond)) | ||
- Oskar ([@oskarrough](https://github.com/oskarrough)) | ||
- Peter Wagenet ([@wagenet](https://github.com/wagenet)) | ||
- Robert Jackson ([@rwjblue](https://github.com/rwjblue)) | ||
- Yoran Brondsema ([@YoranBrondsema](https://github.com/YoranBrondsema)) | ||
|
||
### 1.1.2-beta.1 | ||
|
||
* Bump fastboot version to allow opting into rehydration. | ||
|
||
### 1.1.0 | ||
|
||
* README updates | ||
* Bumping version of `base-auth` to 2.0.0 | ||
* Bumping version of `fastboot` and `fastboot-express-middleware` to 1.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 | ||
|
||
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. |
Oops, something went wrong.