enuchi / React-Google-Apps-Script

This is your boilerplate project for developing React apps inside Google Sheets, Docs, Forms and Slides projects. It's perfect for personal projects and for publishing complex add-ons in the Google Workspace Marketplace.
MIT License
1.32k stars 173 forks source link

Building doesn't use CDN #31

Closed kickbox closed 4 years ago

kickbox commented 4 years ago

Building doesn't seem to source available packages via cdn.

Eg. I ran the boilerplte with no modifications. Here is the transpiled main.html - https://pastebin.com/u5N8kmWE.

Am I missing something here? Please clarify

enuchi commented 4 years ago

If you look at the bundled code it is still using the cdn (unpkg.com) to pull in react, react-dom and prop-types, and any other libraries it identifies, which greatly reduces the bundle size. But you're right, it inlines react-addons-css-transition-group for some reason. I'll look into why it's doing that.

You are always going to get some inlined js, which is from the actual code you're writing, such as your components. The reason for inlining is because google apps scripts doesn't allow you to load scripts from external files. The reason for using a cdn is so you don't have to inline libraries like react, and to take advantage of browser caching.

For production builds the js is minified, so it shouldn't be too big, but this will depend on how big your app is.

gox-ai commented 4 years ago

Hi enuchi, thanks for getting back. There is react-addons-css-transition-group also I tried importing ant-design which was also inlined. This makes the app size really big... I am just learning webpack, your setup is really good for using react. Thank you for the good work.

enuchi commented 4 years ago

Hi @kickbox @gox-ai, thanks for pointing out the problem with the build. I've made some changes to the repo and the transition group package should be inlined now.

The webpack plugin I've been using, https://github.com/mastilver/dynamic-cdn-webpack-plugin, does not automatically add CDN urls for all packages, only the most popular ones. I've added the ability to add your own in the webpack file, here.

Do you mind trying it with ant-design and letting me know if it works?

Also see the updated explanation in the readme: https://github.com/enuchi/React-Google-Apps-Script#adding-new-libraries-and-packages

enuchi commented 4 years ago

ref #33

kickbox commented 4 years ago

Thank you so much enuchi. Appreciate it. I suddenly have to go bug fixing my other app. I will post the feedback within this week.

berniegreen commented 4 years ago

I'm having a hard time building after adding the CDNs also. Here is what I added into the webpack.config.js file below the react-transition-group:

case '@material-ui/core': return { name: packageName, var: 'MaterialCore', version: packageVersion, url:https://unpkg.com/@material-ui/core@latest/umd/material-ui.development.js, }; case '@material-ui/pickers': return { name: packageName, var: 'MaterialPickers', version: packageVersion, url:https://unpkg.com/@material-ui/pickers@3.2.8/dist/material-ui-pickers.js, }; case '@date-io/date-fns': return { name: packageName, var: 'DateFns', version: packageVersion, url:https://unpkg.com/@date-io/date-fns@2.6.1/build/index.js, };

I've never done anything with webpack. Did I do something wrong?

enuchi commented 4 years ago

what's the error you're getting when you try to build?

enuchi commented 4 years ago

@berniegreen try using MaterialUI for the "var" value for @material-ui/core case?

berniegreen commented 4 years ago

@enuchi Hi Elisha. I switched the it to MaterialUI and here is what I copied from the terminal:

/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Tab' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Grid' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Tabs' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Paper' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ✔️ 'react-transition-group' will be served by https://unpkg.com/react-transition- group/dist/react-transition-group.min.js ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Paper' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Tabs' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Tab' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Grid' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Popover' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Dialog' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogActions' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/DialogContent' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/CircularProgress' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/SvgIcon' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'rifm' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/InputAdornment' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/TextField' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Toolbar' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Button' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json info: WebpackClean - removed D:\Programming\greenxmax-sidebar\dist\main.js info: WebpackClean - DONE ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/getPrototypeOf' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inherits' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/possibleConstructorReturn' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/IconButton' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/core/Typography' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/system' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/react-transition-group' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss-plugin-rule-value-function' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss-plugin-props-sort' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss-plugin-vendor-prefixer' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-default-unit' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss-plugin-camel-case' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'jss-plugin-nested' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss-plugin-global' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/classCallCheck' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'hoist-non-react-statics' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/styles' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/defineProperty' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/slicedToArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/assertThisInitialized' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'dom-helpers/addClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'dom-helpers/removeClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'css-vendor' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'hyphenate-style-name' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'jss' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@material-ui/utils' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/typeof' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'tiny-warning' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/createClass' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/inheritsLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/assertThisInitialized' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/objectWithoutPropertiesLoose' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'is-in-browser' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'is-in-browser' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/toConsumableArray' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ 'react-is' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ 'clsx' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json ❌ '@babel/runtime/helpers/esm/objectWithoutProperties' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json
❌ '@babel/runtime/helpers/esm/extends' couldn't be found, please add it to https://github.com/mastilver/module-to-cdn/blob/master/modules.json Hash: de94873260f2336d6623077a9b5ed160f9571fbbab8d506ad65c56142f3bd415fee35b86006cc293 Version: webpack 4.42.0 Child COPY APPSSCRIPT.JSON: Hash: de94873260f2336d6623 Time: 3087ms Built at: 05/11/2020 9:26:40 AM Asset Size Chunks Chunk Names appsscript.json 266 bytes [emitted] main.js 1.15 KiB 0 [emitted] main Entrypoint main = main.js [0] ./appsscript.json 266 bytes {0} [built] Child CLIENT - main dialog: Hash: 077a9b5ed160f9571fbb Time: 8922ms Built at: 05/11/2020 9:26:46 AM Asset Size Chunks Chunk Names main.html 9.1 KiB [emitted] main.js 8.44 KiB 0 [emitted] main Entrypoint main = main.js [0] external "React" 42 bytes {0} [built] [1] external "PropTypes" 42 bytes {0} [built] [2] external "ReactTransitionGroup" 42 bytes {0} [built] [3] external "ReactDOM" 42 bytes {0} [built] [4] ./src/client/styles.css 568 bytes {0} [built] [6] ./node_modules/css-loader/dist/cjs.js!./src/client/styles.css 2.05 KiB {0} [built] [8] ./src/client/MainDialog.jsx + 4 modules 4.19 KiB {0} [built] | ./src/client/MainDialog.jsx 226 bytes [built] | ./src/client/server.js 880 bytes [built] | + 3 hidden modules

enuchi commented 4 years ago

Hi @berniegreen,

Can you confirm if your code is working? Your bundles are all small so it's hard to tell if you're getting a successful build. Can you open the project successfully in a dialog/sidebar?

Which way are you importing:

import CircularProgress from @material-ui/core/CircularProgress

or

import { CircularProgress } from '@material-ui/core'

?

berniegreen commented 4 years ago

Hi @enuchi sorry for the delayed response. I scrapped Material UI and decided to go with Semantic UI. I got that working along with some other libraries like GSAP. I wondering though how I use packages that don't have just one file for the CDN. Like react-toastify for example https://www.jsdelivr.com/package/npm/react-toastify Is this possible or only if I include each individual file in the HTML file after building is done?

enuchi commented 4 years ago

Hi @berniegreen, sorry for the delayed response. Looks like you should be able to just include the one javascript file that's the entrypoint. Believe it's this one: https://cdn.jsdelivr.net/npm/react-toastify@6.0.6/dist/index.min.js

Note that like a lot of component libraries you'll need to import the css file. Easiest way is to add it to the head tag in the provided html template.

enuchi commented 4 years ago

Added some more documentation on how to use the cdn webpack plugin. Feel free to reopen this issue if you still need help.