Skip to content

Commit d4f68df

Browse files
authored
chore: rename plugin-webapp -> plugin-app-dev @W-21218001@ (#26)
1 parent 82a0eff commit d4f68df

File tree

7 files changed

+307
-307
lines changed

7 files changed

+307
-307
lines changed

.github/workflows/create-github-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
name: create-github-release
22

33
on:
4-
# push:
5-
# branches:
6-
# - main
7-
# - prerelease/**
8-
# tags-ignore:
9-
# - '*'
4+
push:
5+
branches:
6+
- main
7+
- prerelease/**
8+
tags-ignore:
9+
- '*'
1010
workflow_dispatch:
1111
inputs:
1212
prerelease:

CHANGELOG.md

Lines changed: 286 additions & 286 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
**NOTE: This template for sf plugins is not yet official. Please consult with the Platform CLI team before using this template.**
22

3-
# plugin-webapp
3+
# plugin-app-dev
44

5-
[![NPM](https://img.shields.io/npm/v/@salesforce/plugin-webapp.svg?label=@salesforce/plugin-webapp)](https://www.npmjs.com/package/@salesforce/plugin-webapp) [![Downloads/week](https://img.shields.io/npm/dw/@salesforce/plugin-webapp.svg)](https://npmjs.org/package/@salesforce/plugin-webapp) [![License](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/license/apache-2-0)
5+
[![NPM](https://img.shields.io/npm/v/@salesforce/plugin-app-dev.svg?label=@salesforce/plugin-app-dev)](https://www.npmjs.com/package/@salesforce/plugin-app-dev) [![Downloads/week](https://img.shields.io/npm/dw/@salesforce/plugin-app-dev.svg)](https://npmjs.org/package/@salesforce/plugin-app-dev) [![License](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/license/apache-2-0)
66

77
## Using the template
88

@@ -40,7 +40,7 @@ Additionally, there are some additional tests that the Salesforce CLI will enfor
4040
- [@salesforce/dev-config](https://github.com/forcedotcom/dev-config)
4141
- [@salesforce/dev-scripts](https://github.com/forcedotcom/dev-scripts)
4242

43-
# Salesforce CLI Webapp Plugin
43+
# Salesforce CLI App Dev Plugin
4444

4545
A Salesforce CLI plugin for building and deploying web applications that integrate with Salesforce. This plugin provides tools for local development, packaging, and deployment of webapps with built-in Salesforce authentication.
4646

@@ -62,7 +62,7 @@ We always recommend using the latest version of these commands bundled with the
6262
1. **Install the plugin:**
6363

6464
```bash
65-
sf plugins install @salesforce/plugin-webapp
65+
sf plugins install @salesforce/plugin-app-dev
6666
```
6767

6868
2. **Authenticate with Salesforce:**
@@ -107,7 +107,7 @@ We always recommend using the latest version of these commands bundled with the
107107
## Install
108108

109109
```bash
110-
sf plugins install @salesforce/plugin-webapp@x.y.z
110+
sf plugins install @salesforce/plugin-app-dev@x.y.z
111111
```
112112

113113
## Issues
@@ -139,7 +139,7 @@ To build the plugin locally, make sure to have yarn installed and run the follow
139139

140140
```bash
141141
# Clone the repository
142-
git clone git@github.com:salesforcecli/plugin-webapp
142+
git clone git@github.com:salesforcecli/plugin-app-dev
143143

144144
# Install the dependencies and compile
145145
yarn && yarn build

SF_WEBAPP_DEV_GUIDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ Output:
528528
### Building the Plugin
529529

530530
```bash
531-
cd /path/to/plugin-webapp
531+
cd /path/to/plugin-app-dev
532532

533533
# Install dependencies
534534
yarn install
@@ -552,7 +552,7 @@ yarn build # Rebuild - no re-linking needed
552552
### Project Structure
553553

554554
```
555-
plugin-webapp/
555+
plugin-app-dev/
556556
├── src/
557557
│ ├── commands/webapp/
558558
│ │ └── dev.ts # Main command implementation
@@ -596,4 +596,4 @@ plugin-webapp/
596596

597597
---
598598

599-
**Repository:** [github.com/salesforcecli/plugin-webapp](https://github.com/salesforcecli/plugin-webapp)
599+
**Repository:** [github.com/salesforcecli/plugin-app-dev](https://github.com/salesforcecli/plugin-app-dev)

command-snapshot.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"flagAliases": [],
66
"flagChars": ["b", "n", "o", "p", "u"],
77
"flags": ["flags-dir", "json", "name", "open", "port", "target-org", "url"],
8-
"plugin": "@salesforce/plugin-webapp"
8+
"plugin": "@salesforce/plugin-app-dev"
99
}
1010
]

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@salesforce/plugin-webapp",
3-
"description": "webapp development",
2+
"name": "@salesforce/plugin-app-dev",
3+
"description": "",
44
"version": "1.0.0",
55
"author": "Salesforce",
66
"bugs": "https://github.com/forcedotcom/cli/issues",
@@ -40,7 +40,7 @@
4040
"/oclif.manifest.json",
4141
"/schemas"
4242
],
43-
"homepage": "https://github.com/salesforcecli/plugin-webapp",
43+
"homepage": "https://github.com/salesforcecli/plugin-app-dev",
4444
"keywords": [
4545
"force",
4646
"salesforce",
@@ -67,7 +67,7 @@
6767
},
6868
"flexibleTaxonomy": true
6969
},
70-
"repository": "salesforcecli/plugin-webapp",
70+
"repository": "salesforcecli/plugin-app-dev",
7171
"scripts": {
7272
"build": "wireit",
7373
"clean": "sf-clean",

src/commands/webapp/dev.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { ProxyServer } from '../../proxy/ProxyServer.js';
2626
import { discoverWebapp, DEFAULT_DEV_COMMAND, type DiscoveredWebapp } from '../../config/webappDiscovery.js';
2727

2828
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
29-
const messages = Messages.loadMessages('@salesforce/plugin-webapp', 'webapp.dev');
29+
const messages = Messages.loadMessages('@salesforce/plugin-app-dev', 'webapp.dev');
3030

3131
export default class WebappDev extends SfCommand<WebAppDevResult> {
3232
public static readonly summary = messages.getMessage('summary');

0 commit comments

Comments
 (0)