From 01b098ee8061962009b28be6247ed63a3ef91366 Mon Sep 17 00:00:00 2001 From: santic-zombie Date: Sun, 10 Jul 2022 23:43:30 +0300 Subject: [PATCH] RM depricated files --- opennebula/patch/Gruntfile.js | 117 ---------------------------------- opennebula/patch/package.json | 12 ---- 2 files changed, 129 deletions(-) delete mode 100644 opennebula/patch/Gruntfile.js delete mode 100644 opennebula/patch/package.json diff --git a/opennebula/patch/Gruntfile.js b/opennebula/patch/Gruntfile.js deleted file mode 100644 index a5e9678..0000000 --- a/opennebula/patch/Gruntfile.js +++ /dev/null @@ -1,117 +0,0 @@ -/* -------------------------------------------------------------------------- */ -/* Copyright 2002-2022, OpenNebula Project, OpenNebula Systems */ -/* */ -/* Licensed under the Apache License, Version 2.0 (the "License"); you may */ -/* not use this file except in compliance with the License. You may obtain */ -/* a copy of the License at */ -/* */ -/* http://www.apache.org/licenses/LICENSE-2.0 */ -/* */ -/* Unless required by applicable law or agreed to in writing, software */ -/* distributed under the License is distributed on an "AS IS" BASIS, */ -/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ -/* See the License for the specific language governing permissions and */ -/* limitations under the License. */ -/* -------------------------------------------------------------------------- */ - -const sass = require('node-sass'); - -module.exports = function(grunt) { - grunt.initConfig({ - pkg: grunt.file.readJSON("package.json"), - - sass: { - options: { - includePaths: ["bower_components/foundation-sites/scss"] - }, - dist: { - options: { - outputStyle: "compressed", - implementation: sass - }, - files: { - "css/app.css": "scss/app.scss" - } - } - }, - - watch: { - grunt: { - files: ["Gruntfile.js"] - }, - - sass: { - files: "scss/*.scss", - tasks: ["sass"] - }, - - requirejs: { - files: "app/**/*.js", - tasks: ["requirejs"] - } - }, - - requirejs: { - compileCSS: { - options: { - out: "./css/app.min.css", - cssIn: "./css/app.css", - optimizeCss: "default" - } - }, - compileJS: { - options: { - appDir: "./app", - baseUrl: "./", // 1 - dir: "./dist", // 2 - //name: 'vendor/almond', // 3 - mainConfigFile: "./app/main.js", // 5 - preserveLicenseComments: false, - optimize: "none", - generateSourceMaps: true, - removeCombined: true, - //skipDirOptimize: false, - //findNestedDependencies: true, - modules: [ - { - name: "main", - include: ["almond"] - }, - { - name: "login", - include: ["almond"], - insertRequire: ["login"] - }, - { - name: "console/vnc", - include: ["almond"], - insertRequire: ["console/vnc"] - }, - { - name: "console/vmrc", - include: ["almond"], - insertRequire: ["console/vmrc"] - }, - { - name: "console/spice", - include: ["almond"], - insertRequire: ["console/spice"] - }, - { - name: "console/guacamole", - include: ["almond"], - insertRequire: ["console/guacamole"] - } - ] - } - } - } - }); - - grunt.loadNpmTasks("grunt-sass"); - grunt.loadNpmTasks("grunt-contrib-watch"); - grunt.loadNpmTasks("grunt-contrib-requirejs"); - - grunt.registerTask("build", ["sass"]); - grunt.registerTask("default", ["build","watch"]); -}; diff --git a/opennebula/patch/package.json b/opennebula/patch/package.json deleted file mode 100644 index 82de2e0..0000000 --- a/opennebula/patch/package.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "name": "opennebula-sunstone", - "version": "0.0.1", - "devDependencies": { - "grunt": "<1.1.0", - "grunt-cli": "1.3.2", - "grunt-contrib-requirejs": "1.0.0", - "grunt-contrib-watch": "1.1.0", - "grunt-sass": "3.1.0", - "node-sass": "7.0.1" - } -}