Mercurial > code > home > repos > homeauto
annotate service/mqtt_to_rdf/rollup.config.js @ 1574:6618d481421c dependabot/pip/service/colplay/pillow-8.1.1
Bump pillow from 3.1.1 to 8.1.1 in /service/colplay
Bumps [pillow](https://github.com/python-pillow/Pillow) from 3.1.1 to 8.1.1.
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst)
- [Commits](https://github.com/python-pillow/Pillow/compare/3.1.1...8.1.1)
Signed-off-by: dependabot[bot] <support@github.com>
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
---|---|
date | Thu, 18 Mar 2021 20:13:07 +0000 |
parents | a598d2141587 |
children | e0e623c01a69 |
rev | line source |
---|---|
1533
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
1 import builtins from "rollup-plugin-node-builtins"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
2 import commonjs from "@rollup/plugin-commonjs"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
3 import resolve from "@rollup/plugin-node-resolve"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
4 import typescript from "rollup-plugin-typescript2"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
5 import replace from "@rollup/plugin-replace"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
6 |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
7 const workaround_jsonld_module_system_picker = "process = {version: '1.0.0'}"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
8 const workaround_some_browser_detector = "global = window"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
9 const workaround_jsonld_expand_issue = { |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
10 namedExports: { |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
11 jsonld: ["expand"], // fixes "expand is not exported by node_modules/jsonld/lib/index.js" |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
12 '../../../streamed-graph/node_modules/jsonld/lib/index': ['expand'], |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
13 } |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
14 }; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
15 |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
16 // This makes <dom-module> element totally unavailable. I only meant to prune one of the |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
17 // two, but of course why is streamed-graph's node_modules/**/dom-module.js file getting |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
18 // here in the first place? |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
19 const duplicated_line_i_cant_prune = |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
20 "customElements.define('dom-module', DomModule);"; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
21 const replacements = {}; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
22 replacements[duplicated_line_i_cant_prune] = ""; |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
23 |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
24 export default { |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
25 input: "src/index.ts", |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
26 output: { |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
27 file: "build/bundle.js", |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
28 format: "esm", |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
29 intro: `const ${workaround_some_browser_detector}, ${workaround_jsonld_module_system_picker};`, |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
30 }, |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
31 external: [ |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
32 "dom-module", // don't want two of these in the bundle |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
33 ], |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
34 plugins: [ |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
35 builtins(), |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
36 resolve({ |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
37 extensions: [".js", ".ts"], |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
38 browser: true, |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
39 }), |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
40 typescript(), |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
41 commonjs(workaround_jsonld_expand_issue), |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
42 replace({ ...replacements, delimiters: ["", ""] }), |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
43 ], |
a598d2141587
more mqtt_to_rdf renames. bring in basic LitElement setup for the debug page
drewp <drewp@bigasterisk.com>
parents:
diff
changeset
|
44 }; |