Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: create-github-release

on:
# push:
# branches:
# - main
# - prerelease/**
# tags-ignore:
# - '*'
push:
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

release to NPM on main branch

branches:
- main
- prerelease/**
tags-ignore:
- '*'
workflow_dispatch:
inputs:
prerelease:
Expand Down
572 changes: 286 additions & 286 deletions CHANGELOG.md

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
**NOTE: This template for sf plugins is not yet official. Please consult with the Platform CLI team before using this template.**

# plugin-webapp
# plugin-app-dev

[![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)
[![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)

## Using the template

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

# Salesforce CLI Webapp Plugin
# Salesforce CLI App Dev Plugin

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.

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

```bash
sf plugins install @salesforce/plugin-webapp
sf plugins install @salesforce/plugin-app-dev
```

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

```bash
sf plugins install @salesforce/plugin-webapp@x.y.z
sf plugins install @salesforce/plugin-app-dev@x.y.z
```

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

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

# Install the dependencies and compile
yarn && yarn build
Expand Down
6 changes: 3 additions & 3 deletions SF_WEBAPP_DEV_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ Output:
### Building the Plugin

```bash
cd /path/to/plugin-webapp
cd /path/to/plugin-app-dev

# Install dependencies
yarn install
Expand All @@ -552,7 +552,7 @@ yarn build # Rebuild - no re-linking needed
### Project Structure

```
plugin-webapp/
plugin-app-dev/
├── src/
│ ├── commands/webapp/
│ │ └── dev.ts # Main command implementation
Expand Down Expand Up @@ -596,4 +596,4 @@ plugin-webapp/

---

**Repository:** [github.com/salesforcecli/plugin-webapp](https://github.com/salesforcecli/plugin-webapp)
**Repository:** [github.com/salesforcecli/plugin-app-dev](https://github.com/salesforcecli/plugin-app-dev)
2 changes: 1 addition & 1 deletion command-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"flagAliases": [],
"flagChars": ["b", "n", "o", "p", "u"],
"flags": ["flags-dir", "json", "name", "open", "port", "target-org", "url"],
"plugin": "@salesforce/plugin-webapp"
"plugin": "@salesforce/plugin-app-dev"
}
]
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@salesforce/plugin-webapp",
"description": "webapp development",
"name": "@salesforce/plugin-app-dev",
"description": "",
"version": "1.0.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
Expand Down Expand Up @@ -40,7 +40,7 @@
"/oclif.manifest.json",
"/schemas"
],
"homepage": "https://github.com/salesforcecli/plugin-webapp",
"homepage": "https://github.com/salesforcecli/plugin-app-dev",
"keywords": [
"force",
"salesforce",
Expand All @@ -67,7 +67,7 @@
},
"flexibleTaxonomy": true
},
"repository": "salesforcecli/plugin-webapp",
"repository": "salesforcecli/plugin-app-dev",
"scripts": {
"build": "wireit",
"clean": "sf-clean",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/webapp/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { ProxyServer } from '../../proxy/ProxyServer.js';
import { discoverWebapp, DEFAULT_DEV_COMMAND, type DiscoveredWebapp } from '../../config/webappDiscovery.js';

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

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