This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEAT] Implement Glimmer Components RFC
This PR turns the `@glimmer/component` package into an Ember addon, allowing it to work in both Ember.js and Glimmer.js applications. This works by keeping the `GlimmerComponent` class definition in a separate file that then gets imported by the Glimmer.js implementation in `src`, and is included in the Ember.js implementation via `addon/index.js`.
- Loading branch information
Chris Garrett
committed
Feb 9, 2019
1 parent
ee4090d
commit 21e30eb
Showing
86 changed files
with
6,293 additions
and
868 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
dist | ||
|
||
/.node | ||
|
||
# See https://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# compiled output | ||
/dist/ | ||
/tmp/ | ||
|
||
# dependencies | ||
**/node_modules/** | ||
**/tmp/** | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage/ | ||
/libpeerconnection.log | ||
/npm-debug.log* | ||
/testem.log | ||
/yarn-error.log | ||
|
||
# ember-try | ||
**/.node_modules.ember-try/** | ||
**/bower.json.ember-try | ||
**/package.json.ember-try |
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,23 +1,44 @@ | ||
language: node_js | ||
node_js: | ||
- "8" | ||
- '8' | ||
|
||
env: | ||
- MOZ_HEADLESS=1 | ||
|
||
cache: yarn | ||
cache: | ||
yarn: true | ||
|
||
addons: | ||
chrome: stable | ||
firefox: latest | ||
|
||
before_install: | ||
- "curl -o- -L https://yarnpkg.com/install.sh | bash -s --" | ||
- 'curl -o- -L https://yarnpkg.com/install.sh | bash -s --' | ||
- export PATH="$HOME/.yarn/bin:$PATH" | ||
|
||
install: | ||
- yarn install --non-interactive | ||
|
||
script: | ||
- yarn tslint | ||
- yarn test | ||
# Usually, it's ok to finish the test scenario without reverting | ||
# to the addon's original dependency state, skipping "cleanup". | ||
- yarn test:ember $EMBER_TRY_SCENARIO --skip-cleanup | ||
|
||
jobs: | ||
fail_fast: true | ||
|
||
include: | ||
- stage: Glimmer Tests | ||
name: Package Tests | ||
script: yarn test | ||
- name: Lint | ||
script: tslint | ||
|
||
- stage: Ember Tests | ||
name: Node | ||
script: yarn test:ember:node | ||
- env: EMBER_TRY_SCENARIO=ember-default | ||
- env: EMBER_TRY_SCENARIO=ember-release | ||
- env: EMBER_TRY_SCENARIO=ember-beta | ||
- env: EMBER_TRY_SCENARIO=ember-canary | ||
- env: EMBER_TRY_SCENARIO=ember-lts-3.4 |
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 @@ | ||
{ | ||
"ignore_dirs": ["tmp", "dist"] | ||
} |
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
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
Oops, something went wrong.