This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(package): update dependencies chore(rollup): change require names feat: add dedupe option prevents bundling the same module multiple times by resolving it from the root node_modules feat(rollup): add onwarn option to prevent this warnings chore: change eslint settings for node files style(node-test): fix lint warnings style: fix lint warnings test(rollup): warning messages test: dedupe option
- Loading branch information
1 parent
a4b24a9
commit 873c6c4
Showing
20 changed files
with
5,305 additions
and
3,338 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
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,5 +1,3 @@ | ||
/* eslint-env node */ | ||
|
||
'use strict'; | ||
|
||
const common = { | ||
|
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,5 +1,3 @@ | ||
/* eslint-env node */ | ||
|
||
'use strict'; | ||
|
||
const babelConfig = require('./babel'); | ||
|
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
'use strict'; | ||
|
||
const path = require('path'); | ||
const entrypoint = path.join('tests', 'dummy', 'lib'); | ||
|
||
module.exports = function(environment) { | ||
const ENV = { | ||
modulePrefix: 'dummy', | ||
environment, | ||
rootURL: '/', | ||
locationType: 'auto', | ||
EmberENV: { | ||
EXTEND_PROTOTYPES: { | ||
Date: false | ||
} | ||
}, | ||
'ember-cli-webcomponents-bundler': { | ||
modules: false, | ||
entrypointPaths: [ | ||
path.join(entrypoint, 'dedupe') | ||
], | ||
dedupe: ['weightless'] | ||
} | ||
}; | ||
|
||
return ENV; | ||
}; |
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,26 @@ | ||
'use strict'; | ||
|
||
const path = require('path'); | ||
const entrypoint = path.join('tests', 'dummy', 'lib'); | ||
|
||
module.exports = function(environment) { | ||
const ENV = { | ||
modulePrefix: 'dummy', | ||
environment, | ||
rootURL: '/', | ||
locationType: 'auto', | ||
EmberENV: { | ||
EXTEND_PROTOTYPES: { | ||
Date: false | ||
} | ||
}, | ||
'ember-cli-webcomponents-bundler': { | ||
modules: false, | ||
entrypointPaths: [ | ||
path.join(entrypoint, 'dedupe') | ||
] | ||
} | ||
}; | ||
|
||
return ENV; | ||
}; |
Oops, something went wrong.