Skip to content

Commit 7ba62cb

Browse files
committed
DS-000: Remove generator from the name.
1 parent 08a7223 commit 7ba62cb

5 files changed

Lines changed: 7741 additions & 5627 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# drupal-theme-init [![NPM version][npm-image]][npm-url]
2-
🚀 A Yeoman generator to scaffold and initialize a Drupal theme. 🚀
2+
🚀 Initialize a Drupal theme. 🚀
33

44
## Installation
55

6-
First, generator-drupal-theme-init using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)) preferably >=16.
6+
First, drupal-theme-init using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)) preferably >=16.
77

88
```bash
99
npm install -g @specbeelabs/drupal-theme-init
@@ -14,7 +14,7 @@ npm install -g @specbeelabs/drupal-theme-init
1414
- Type the following command to start the generator. Start this inside the custom theme folder for easier options.
1515

1616
```
17-
generator-drupal-theme-init
17+
drupal-theme-init
1818
```
1919

2020
- Continue selecting options as per requirement.

__tests__/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const path = require("path");
33
const assert = require("yeoman-assert");
44
const helpers = require("yeoman-test");
55

6-
describe("generator-drupal-theme-init:app", () => {
6+
describe("drupal-theme-init:app", () => {
77
beforeAll(() =>
88
helpers.run(path.join(__dirname, "../generators/app")).withPrompts({
99
themeName: "Drupal",
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ const env = yeoman.createEnv();
55

66
env.register(
77
require.resolve("../generators/app/index.js"),
8-
"generator-drupal-theme-init"
8+
"drupal-theme-init"
99
);
10-
env.run("generator-drupal-theme-init");
10+
env.run("drupal-theme-init");

0 commit comments

Comments
 (0)