Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 3af3d849 authored by Akhil's avatar Akhil 🙂
Browse files

Add webpack

parent 718a2566
Loading
Loading
Loading
Loading

babel.config.js

0 → 100644
+5 −0
Original line number Diff line number Diff line
// SPDX-FileCopyrightText: {{ app.author_name }} <{{ app.author_mail }}>
// SPDX-License-Identifier: {{ app.license }}
const babelConfig = require('@nextcloud/babel-config')

module.exports = babelConfig
+19479 −4

File changed.

Preview size limit exceeded, changes collapsed.

package.json

0 → 100644
+33 −0
Original line number Diff line number Diff line
{
    "name": "ecloud-theme-helper",
    "version": "1.4.6",
    "description": "App for ecloud theme helper actions and styles.",
    "repository": {
        "type": "git",
        "url": "https://gitlab.e.foundation/e/infra/ecloud/nextcloud-apps/ecloud-theme-helper"
    },
    "private": true,
    "scripts": {
        "build": "NODE_ENV=production webpack --progress",
        "dev": "NODE_ENV=development webpack --progress",
        "watch": "NODE_ENV=development webpack --progress --watch",
        "lint": "eslint --ext .js,.vue src",
        "lint:fix": "eslint --ext .js,.vue src --fix",
        "stylelint": "stylelint {src,css}/**/{*.scss,*.css} --allow-empty-input",
        "stylelint:fix": "stylelint {src,css}/**/{*.scss,*.css} --fix --allow-empty-input"
    },
    "browserslist": [
        "extends @nextcloud/browserslist-config"
    ],
    "engines": {
        "node": "^16.0.0",
        "npm": "^7.0.0 || ^8.0.0"
    },
    "devDependencies": {
        "@nextcloud/babel-config": "^1.0.0",
        "@nextcloud/browserslist-config": "^2.2.0",
        "@nextcloud/eslint-config": "^8.0.0",
        "@nextcloud/stylelint-config": "^2.1.2",
        "@nextcloud/webpack-vue-config": "^5.2.1"
    }
}
+1 −0
Original line number Diff line number Diff line
/* global $ */
$(document).ready(function () {
	$('.personal-settings-setting-box #email').prop('readonly', true);
})
+1 −0
Original line number Diff line number Diff line
/* global $ */
$(document).ready(function () {
	$("#two-factor-auth .settings-hint").each(function (index) {
		if (index > 0) {
Loading