Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cibernox/ember-basic-dropdown
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.0.1
Choose a base ref
...
head repository: cibernox/ember-basic-dropdown
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d6395e07adfa13037617fd2b051623d2f9bfde58
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 11, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c2c3921 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4c9ab6f View commit details
  3. Copy the full SHA
    62c8699 View commit details
  4. v6.0.2

    cibernox committed Nov 11, 2022
    Copy the full SHA
    d6395e0 View commit details
Showing with 6,532 additions and 5,628 deletions.
  1. +1 −0 .github/workflows/ci.yml
  2. +2 −2 config/ember-try.js
  3. +6,526 −5,623 package-lock.json
  4. +3 −3 package.json
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -72,6 +72,7 @@ jobs:
- ember-canary
- ember-default-with-jquery
- embroider-safe
- embroider-optimized

steps:
- uses: actions/checkout@v2
4 changes: 2 additions & 2 deletions config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const getChannelURL = require('ember-source-channel-url');
const { embroiderSafe } = require('@embroider/test-setup');
const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup');

module.exports = async function () {
return {
@@ -52,7 +52,7 @@ module.exports = async function () {
},
},
embroiderSafe(),
// embroiderOptimized(), doesn't work, not sure why yet
embroiderOptimized(),
],
};
};
Loading