Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Steinmetz <steinmetz.richard@googlemail.com>2020-12-23 20:37:35 +0300
committerRichard Steinmetz <steinmetz.richard@googlemail.com>2020-12-23 20:59:19 +0300
commitac1a2c3b15ec69e1750fc07c5b23e1e9171d3f6a (patch)
treed8b3700aae2f322dfcc3e04bb733a7fb9b9b8f9d /babel.config.json
parent332d45fa530ae716ae130db8fb88fb45bb2127b3 (diff)
Update frontend code
Introduce webpack to bundle required dependencies instead of relying on global libraries. Those global libraries are deprecated and will be removed soon. I tried to change the existing code as little as possible. However, the diff is huge because I fixed the indentation (tabs and spaces were mixed). Additionally, I tried to keep package.json and webpack.common.js as minimal as possible and took some inspiration from other official nextcloud apps. Npm scripts: - Production build: `npm run build` - Development build: `npm run dev` - Build and watch for changes: `npm run watch` The build script should be run before pushing a release. The source files (inside src/), installed packages (inside node_modules/) and various js configs (webpack.*.js, package*.json and babel.config.json) can be omitted from a release. Webpack will output the generated code to js/. Signed-off-by: Richard Steinmetz <steinmetz.richard@googlemail.com>
Diffstat (limited to 'babel.config.json')
-rw-r--r--babel.config.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/babel.config.json b/babel.config.json
new file mode 100644
index 0000000..2e0ede5
--- /dev/null
+++ b/babel.config.json
@@ -0,0 +1,11 @@
+{
+ "presets": [
+ [
+ "@babel/preset-env",
+ {
+ "useBuiltIns": "usage",
+ "corejs": 3
+ }
+ ]
+ ]
+}