We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I had a problem, when generating js / css via grunt
"Uncaught TypeError: Class extends value undefined is not a constructor or null" "class BaseComponent extends Config"
needed to add files to Grundfile.js into concat: ..
`concat: { js: { options: { separator: ';\n', sourcemap: false }, files: { '<%= project.out %><%= project.theme %>/src/js/scripts.min.js': [ ..... '<%= project.dev %>node_modules/bootstrap/js/dist/dom/manipulator.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/index.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/component-functions.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/config.js', '<%= project.dev %>node_modules/bootstrap/js/dist/base-component.js', .... ], '<%= project.out %><%= project.theme %>/src/js/scripts.jq.min.js': [ ........ '<%= project.dev %>node_modules/bootstrap/js/dist/dom/manipulator.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/index.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/component-functions.js', '<%= project.dev %>node_modules/bootstrap/js/dist/util/config.js', '<%= project.dev %>node_modules/bootstrap/js/dist/base-component.js', ..... ],`
this solved my problem
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I had a problem, when generating js / css via grunt
"Uncaught TypeError: Class extends value undefined is not a constructor or null" "class BaseComponent extends Config"
needed to add files to Grundfile.js into concat: ..
this solved my problem
The text was updated successfully, but these errors were encountered: