Initial rendering of a Todos-MVC app. (events are called but don't trigger a re-rendering yet, renderin-function does not yet support updating DOM yet)
This commit is contained in:
@@ -21,7 +21,9 @@ export default [
|
||||
plugins: [
|
||||
sass(),
|
||||
babel(), // babel
|
||||
resolve(), // node_modules
|
||||
resolve({
|
||||
extensions: [ '.mjs', '.js', '.jsx', '.json' ],
|
||||
}), // node_modules
|
||||
commonjs(), // CJS-modules
|
||||
production && terser(), // minify, but only in production
|
||||
copy({
|
||||
@@ -43,7 +45,9 @@ export default [
|
||||
plugins: [
|
||||
sass(),
|
||||
babel(), // babel
|
||||
resolve(), // node_modules
|
||||
resolve({
|
||||
extensions: [ '.mjs', '.js', '.jsx', '.json' ],
|
||||
}), // node_modules
|
||||
commonjs(), // CJS-modules
|
||||
production && terser(), // minify, but only in production
|
||||
copy({
|
||||
|
||||
Reference in New Issue
Block a user