Skip to content

Commit

Permalink
Merge pull request #33 from GavinJoyce/gj/fix-build
Browse files Browse the repository at this point in the history
disable EMBER_TRY_SCENARIO=embroider-optimized to fix build
  • Loading branch information
GavinJoyce committed May 21, 2021
2 parents d5c81d1 + bd69dee commit fa9103f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 105 deletions.
64 changes: 0 additions & 64 deletions .travis.yml

This file was deleted.

46 changes: 5 additions & 41 deletions config/ember-try.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,17 @@
'use strict';

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

module.exports = async function () {
return {
useYarn: true,
scenarios: [
{
name: 'ember-lts-3.16',
name: 'ember-lts-3.24',
npm: {
devDependencies: {
'ember-source': '~3.16.0',
},
},
},
{
name: 'ember-lts-3.20',
npm: {
devDependencies: {
'ember-source': '~3.20.5',
'ember-source': '~3.24.3',
},
},
},
Expand Down Expand Up @@ -47,36 +39,8 @@ module.exports = async function () {
},
},
},
{
name: 'ember-default-with-jquery',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({
'jquery-integration': true,
}),
},
npm: {
devDependencies: {
'@ember/jquery': '^1.1.0',
},
},
},
{
name: 'ember-classic',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({
'application-template-wrapper': true,
'default-async-observers': false,
'template-only-glimmer-components': false,
}),
},
npm: {
ember: {
edition: 'classic',
},
},
},
embroiderSafe(),
embroiderOptimized(),
// embroiderSafe(), // FIXME: https://github.com/GavinJoyce/ember-headlessui/issues/34
// embroiderOptimized(),
],
};
};

0 comments on commit fa9103f

Please sign in to comment.