Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump @duckduckgo/privacy-configuration from c3485cc to a11036a #1428

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.


Unchanged files with check annotations Beta

const outputDir = join(pageOutputDirectory, 'dist');
buildJobs.push({
outputDir,
injectName: /** @type {ImportMeta['injectName']} */ (injectName),

Check warning on line 102 in special-pages/index.mjs

GitHub Actions / unit (ubuntu-latest)

Expected property shorthand

Check warning on line 102 in special-pages/index.mjs

GitHub Actions / unit (windows-latest)

Expected property shorthand
pageName,
});
}
if (value && value in values.colors) {
customizer.background = {
kind: 'color',
value: /** @type {import('../../types/new-tab').PredefinedColor} */ (value),

Check warning on line 111 in special-pages/pages/new-tab/app/customizer/mocks.js

GitHub Actions / unit (ubuntu-latest)

Expected property shorthand

Check warning on line 111 in special-pages/pages/new-tab/app/customizer/mocks.js

GitHub Actions / unit (windows-latest)

Expected property shorthand
};
} else if (value && value in values.gradients) {
customizer.background = {
kind: 'gradient',
value: /** @type {import('../../types/new-tab').PredefinedGradient} */ (value),

Check warning on line 116 in special-pages/pages/new-tab/app/customizer/mocks.js

GitHub Actions / unit (ubuntu-latest)

Expected property shorthand

Check warning on line 116 in special-pages/pages/new-tab/app/customizer/mocks.js

GitHub Actions / unit (windows-latest)

Expected property shorthand
};
} else if (value && value.startsWith('hex:')) {
const hex = value.slice(4);