Skip to content

Commit

Permalink
fix: ensure we are not allowing embroider to do anything (#8749)
Browse files Browse the repository at this point in the history
  • Loading branch information
runspired committed Jul 28, 2023
1 parent 2ba6182 commit c52ee1f
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions tests/embroider-basic-compat/ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,21 @@ module.exports = function (defaults) {
},
],
compatAdapters: new Map([
['@ember-data/store', null],
['@ember-data/record-data', null],
['@ember-data/serializer', null],
['@ember-data/active-record', null],
['@ember-data/adapter', null],
['@ember-data/model', null],
['@ember-data/debug', null],
['@ember-data/tracking', null],
['@ember-data/graph', null],
['@ember-data/json-api', null],
['@ember-data/legacy-compat', null],
['@ember-data/model', null],
['@ember-data/record-data', null],
['@ember-data/request-utils', null],
['@ember-data/request', null],
['@ember-data/rest', null],
['@ember-data/serializer', null],
['@ember-data/store', null],
['@ember-data/tracking', null],
['ember-data', null],
]),
packageRules: [
{
package: '@ember-data/store',
addonModules: {
'-private.js': {
dependsOnModules: ['@ember-data/json-api'],
},
},
},
],
});
};

0 comments on commit c52ee1f

Please sign in to comment.