Making WordPress.org

Changeset 6957


Ignore:
Timestamp:
03/28/2018 07:16:25 AM (7 years ago)
Author:
netweb
Message:

Support Theme: Update package.json and add package-lock.json

This changeset updates the package.json file per the WordPress Coding Standards, updates the required Node.js version to >=8.9.3, updates the license to a valid SPDX format, and finnaly adds a package-lock.json file allowing for consisent and fater package installs with npm 5.x+.

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/package.json

    r6937 r6957  
    11{
    2   "name": "wporg-support",
    3   "version": "1.0.0",
    4   "description": "Theme for WordPress Support Forums",
    5   "main": "index.php",
    6   "scripts": {
    7     "test": "echo \"Error: no test specified\" && exit 1"
    8   },
    9   "author": "wordpressdotorg",
    10   "license": "GPL-2.0+",
    11   "devDependencies": {
    12     "grunt": "^1.0.1",
    13     "grunt-contrib-watch": "^1.0.0",
    14     "grunt-rtlcss": "^2.0.1",
    15     "grunt-sass": "^2.1.0"
    16   }
     2    "name": "wporg-support",
     3    "version": "1.0.0",
     4    "description": "Theme for WordPress Support Forums",
     5    "main": "index.php",
     6    "scripts": {
     7        "test": "echo \"Error: no test specified\" && exit 1"
     8    },
     9    "author": "wordpressdotorg",
     10    "license": "GPL-2.0-or-later",
     11    "devDependencies": {
     12        "grunt": "~1.0.2",
     13        "grunt-contrib-watch": "~1.0.0",
     14        "grunt-rtlcss": "~2.0.1",
     15        "grunt-sass": "~2.1.0"
     16    },
     17    "engines": {
     18        "node": ">=8.9.3"
     19    }
    1720}
Note: See TracChangeset for help on using the changeset viewer.