Mglaser has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/282112

Change subject: Adding definitions files for jenkins
......................................................................

Adding definitions files for jenkins

This should fix jenkins error messages we get for every commit in
REL1_23 branch

Change-Id: I0149dca5f06c7011c660768958b4e8b6d9f75bbd
---
A Gruntfile.js
A composer.json
A package.json
3 files changed, 58 insertions(+), 0 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlueSpiceExtensions 
refs/changes/12/282112/1

diff --git a/Gruntfile.js b/Gruntfile.js
new file mode 100644
index 0000000..154d77c
--- /dev/null
+++ b/Gruntfile.js
@@ -0,0 +1,17 @@
+/*jshint node:true */
+module.exports = function ( grunt ) {
+       grunt.loadNpmTasks( 'grunt-jsonlint' );
+
+       grunt.initConfig( {
+               jsonlint: {
+                       all: [
+                               '*.json',
+                               '**/*.json',
+                               '!node_modules/**'
+                       ]
+               }
+       } );
+
+       grunt.registerTask( 'test', [ 'jsonlint' ] );
+       grunt.registerTask( 'default', 'test' );
+};
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..43561a9
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,30 @@
+{
+       "name": "hallowelt/bluespice-extensions",
+       "description": "This package consists of a number of separate MediaWiki 
extensions that depend on hallowelt/bluespice-foundation",
+       "keywords": ["mediawiki", "wiki"],
+       "license": "GPL-2.0+",
+       "type": "mediawiki-extension",
+       "homepage": "https://www.bluespice.com";,
+       "authors": [
+               {
+                       "name": "Hallo Welt! Medienwerkstatt GmbH",
+                       "email": "[email protected]",
+                       "homepage": "http://www.hallowelt.com";
+               }
+       ],
+       "require": {
+               "hallowelt/bluespice-foundation": "dev-master"
+       },
+       "support": {
+               "issues": "https://sourceforge.net/projects/bluespice/support";,
+               "wiki": "https://help.bluespice.com";
+       },
+       "require-dev": {
+               "jakub-onderka/php-parallel-lint": "0.9.2"
+       },
+       "scripts": {
+               "test": [
+                       "parallel-lint . --exclude vendor"
+               ]
+       }
+}
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..d658b7a
--- /dev/null
+++ b/package.json
@@ -0,0 +1,11 @@
+{
+  "scripts": {
+    "test": "grunt test"
+  },
+  "devDependencies": {
+    "grunt": "0.4.5",
+    "grunt-banana-checker": "0.4.0",
+    "grunt-cli": "0.1.13",
+    "grunt-jsonlint": "1.0.7"
+  }
+}

-- 
To view, visit https://gerrit.wikimedia.org/r/282112
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0149dca5f06c7011c660768958b4e8b6d9f75bbd
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlueSpiceExtensions
Gerrit-Branch: REL1_23
Gerrit-Owner: Mglaser <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to