{"id":22059155,"url":"https://github.com/93digital/luna","last_synced_at":"2026-04-07T16:31:58.597Z","repository":{"id":203772518,"uuid":"392235679","full_name":"93digital/luna","owner":"93digital","description":"Luna, the 93digital development team's starter theme! This theme acts as a boilerplate for bespoke theme development.","archived":false,"fork":false,"pushed_at":"2021-11-26T16:54:09.000Z","size":6293,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-08T16:06:01.382Z","etag":null,"topics":["css","javascript","npm","php","scss","wordpress","wordpress-theme"],"latest_commit_sha":null,"homepage":"https://93digital.co.uk/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/93digital.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-08-03T07:51:52.000Z","updated_at":"2022-03-23T17:00:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"889c0596-db9e-41d7-a3e1-e58771ba9bb2","html_url":"https://github.com/93digital/luna","commit_stats":null,"previous_names":["93digital/luna"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/93digital/luna","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/93digital%2Fluna","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/93digital%2Fluna/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/93digital%2Fluna/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/93digital%2Fluna/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/93digital","download_url":"https://codeload.github.com/93digital/luna/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/93digital%2Fluna/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31520468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","javascript","npm","php","scss","wordpress","wordpress-theme"],"created_at":"2024-11-30T17:27:20.333Z","updated_at":"2026-04-07T16:31:58.571Z","avatar_url":"https://github.com/93digital.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Luna\n\n**_v1.1.8_**\n\n**_Authors:_** _Andrew Iontton \u0026 Matt Knight_\n\nA WordPress starter theme lovingly created by the 93digital development team. It is the boilerplate for all our WordPress projects from April 2021 onwards and replaces the older starter theme, Stella.\n\nLuna aims to clean up a lot of the legacy code which had grown in Stella over the years whilst also reinventing the theme to natively allow Gutenberg block development.\n\n## Installation\n\nLuna is available on 93digital's private Bitbucket repository at `https://bitbucket.org/93developers/luna-starter-theme/` and can be cloned via `git clone git@93digital.git:wordpress/starter-theme.git`.\n\n## Requirements\n\n### PHP\n\nRequired PHP version 7.0 or later. Untested with version 8.\n\n### Node\n\nUse node version 14 or later.\n\n### NPM\n\nThe theme uses npm to include third party modules as well as for bundling assets. This theme requires npm version 6 or later.\n\nTo install the theme dependencies, run: `npm install` or `npm i`.\n\n### Composer\n\nComposer is required to install third-party PHP packages. This is not imperative as the core theme does not depend on third-party packages, however the packages listed in `composer.json` will likely be useful with theme development.\n\nTo install Composer packages, run: `composer update`.\n\n## Available npm scripts\n\nLuna utilises WordPress's own wp-scripts for it's main development workflow. This uses Webpack to bundle assets together. Documentation on what is included can be found here. [WP Scripts](https://developer.wordpress.org/block-editor/reference-guides/packages/packages-scripts/).\n\n### npm build\n\nTransform your code to provide it's ready for production and optimized, needed to run before deployment.\n\n**Example:**\n\n```json\n{\n  \"scripts\": {\n    \"build\": \"run-s \\\"build:*\\\"\",\n    \"build:scripts\": \"wp-scripts build js/index.js js/blocks/blocks.js js/acf-blocks.js\",\n    \"build:styles\": \"sass sass:\",\n    \"build:postcss\": \"postcss -r style.css\",\n    \"watch\": \"run-p \\\"watch:*\\\"\",\n    \"watch:scripts\": \"wp-scripts start js/index.js js/blocks/blocks.js js/acf-blocks.js\",\n    \"watch:styles\": \"sass --watch sass:\"\n  }\n}\n```\n\n- `npm run build` - Builds the code for production (Runs through all scripts prepended with `build:`).\n- `npm run build:scripts` - Builds the JavaScript assets ready for production.\n- `npm run build:styles` - Builds the SASS assets ready for production.\n- `npm run build:postcss` - Runs PostCSS through our main Theme and Editor stylesheets for better optimization.\n\n### npm watch\n\nWatches your code and generates development friendly assets not meant for production. The script will automatically generate new files if you make changes.\n\n**Example:**\n\n```json\n{\n  \"scripts\": {\n    \"watch\": \"run-p \\\"watch:*\\\"\",\n    \"watch:scripts\": \"wp-scripts start js/index.js js/blocks/blocks.js js/acf-blocks.js\",\n    \"watch:styles\": \"sass --watch sass:\"\n  }\n}\n```\n\n- `npm run watch` - Watches and builds the code for development (Runs through all scripts prepended with `watch:`).\n- `npm run watch:styles` - Specifically watches only SASS assets. It does not run PostCSS like `build` to help with debugging.\n- `npm run watch:scripts` - Specifically watches only JavaScript assets.\n\n## Configurations\n\n### Webpack\n\nExtended the default wp-scripts to include svg spritemaps.\n\n### Stylelint\n\nExtends on Stylelint SASS config [Stylelint](https://github.com/bjankord/stylelint-config-sass-guidelines). See `.stylelintrc.json` for more details.\n\n### ESlint\n\nExtends on ESlint reccomended \u0026 react config [ESLint](https://eslint.org/). See `.eslintrc.json` for more details.\n\n### PostCSS\n\nWe use several [PostCSS](https://postcss.org/) plugins to enhance our CSS and allow us to use the very latest features. See `postcss.config.js` for the full list.\n\n### PHP Code Sniffer / WordPress PHP coding standards\n\n@todo (https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/ - needs configuring).\n\n## Luna updates\n\nWhen updating the core codebase of Luna, please update the theme version in the following places:\n\n- The top of this file (`README.md`)\n- `readme.txt` (Also add a brief summary of the changes to the Changelog)\n- `/sass/style.scss`\n- `package.json`\n\nAlso, it is advised to call name the branch after the new version you are working on. So if the theme is currently at `v1.0.1` and your are fixing a bug, the branch for this bug should be `v1.0.2`. If multiple developers are working on different things at the same time then they will need to collaborate as to which version they are working on.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F93digital%2Fluna","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F93digital%2Fluna","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F93digital%2Fluna/lists"}