Skip to content

Commit 546ebba

Browse files
committed
fix: config and license
1 parent 0951ce4 commit 546ebba

4 files changed

Lines changed: 7793 additions & 11185 deletions

File tree

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ All rights reserved.
203203
distributed under the License is distributed on an "AS IS" BASIS,
204204
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205205
See the License for the specific language governing permissions and
206-
limitations under the License.
206+
limitations under the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# plugin-data-setup-transfer
22

3-
[![NPM](https://img.shields.io/npm/v/plugin-data-setup-transfer.svg?label=plugin-data-setup-transfer)](https://www.npmjs.com/package/plugin-data-setup-transfer) [![Downloads/week](https://img.shields.io/npm/dw/plugin-data-setup-transfer.svg)](https://npmjs.org/package/plugin-data-setup-transfer) [![License](https://img.shields.io/badge/License-BSD%203--Clause-brightgreen.svg)](https://raw.githubusercontent.com/salesforcecli/plugin-data-setup-transfer/main/LICENSE.txt)
3+
[![NPM](https://img.shields.io/npm/v/plugin-data-setup-transfer.svg?label=plugin-data-setup-transfer)](https://www.npmjs.com/package/plugin-data-setup-transfer) [![Downloads/week](https://img.shields.io/npm/dw/plugin-data-setup-transfer.svg)](https://npmjs.org/package/plugin-data-setup-transfer) [![License](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/license/apache-2-0)
44

55

66
This plugin is bundled with the [Salesforce CLI](https://developer.salesforce.com/tools/sfdxcli). For more information on the CLI, read the [getting started guide](https://developer.salesforce.com/docs/atlas.en-us.sfdx_setup.meta/sfdx_setup/sfdx_setup_intro.htm).

package.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@
1111
"@oclif/plugin-command-snapshot": "^5.3.22",
1212
"@salesforce/cli-plugins-testkit": "^5.3.58",
1313
"@salesforce/dev-scripts": "^11.0.4",
14-
"@types/mocha": "^10.0.10",
15-
"@types/node": "^25.9.1",
1614
"eslint-plugin-sf-plugin": "^1.20.33",
17-
"husky": "^9.1.7",
1815
"oclif": "^4.23.8",
1916
"ts-node": "^10.9.2",
20-
"typescript": "^6.0.3",
21-
"wireit": "^0.14.12"
17+
"typescript": "^5.9.3"
2218
},
2319
"engines": {
2420
"node": ">=18.0.0"
@@ -38,7 +34,7 @@
3834
"sfdx",
3935
"sfdx-plugin"
4036
],
41-
"license": "BSD-3-Clause",
37+
"license": "Apache-2.0",
4238
"oclif": {
4339
"commands": "./lib/commands",
4440
"bin": "sf",
@@ -47,8 +43,14 @@
4743
"@oclif/plugin-help"
4844
],
4945
"topics": {
50-
"hello": {
51-
"description": "Commands to say hello."
46+
"data": {
47+
"description": "Manage records in your org.",
48+
"subtopics": {
49+
"setup": {
50+
"description": "Retrieve setup data from one org and deploy it to another."
51+
}
52+
},
53+
"external": true
5254
}
5355
},
5456
"flexibleTaxonomy": true
@@ -59,12 +61,14 @@
5961
"clean-all": "sf-clean all",
6062
"compile": "wireit",
6163
"docs": "sf-docs",
64+
"fix-license": "eslint src test --fix --rule \"header/header: [2]\"",
6265
"format": "wireit",
6366
"link-check": "wireit",
6467
"lint": "wireit",
6568
"postinstall": "yarn husky install",
6669
"postpack": "sf-clean --ignore-signing-artifacts",
6770
"prepack": "sf-prepack",
71+
"prepare": "sf-install",
6872
"test": "wireit",
6973
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
7074
"test:only": "wireit",
@@ -133,8 +137,7 @@
133137
"test:only": {
134138
"command": "nyc mocha \"test/**/*.test.ts\"",
135139
"env": {
136-
"FORCE_COLOR": "2",
137-
"TS_NODE_PROJECT": "test/tsconfig.json"
140+
"FORCE_COLOR": "2"
138141
},
139142
"files": [
140143
"test/**/*.ts",
@@ -176,7 +179,7 @@
176179
"output": []
177180
},
178181
"link-check": {
179-
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|%s\" --markdown --retry --directory-listing --verbosity error",
182+
"command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|localhost|%s\" --markdown --retry --directory-listing --verbosity error",
180183
"files": [
181184
"./*.md",
182185
"./!(CHANGELOG).md",

0 commit comments

Comments
 (0)