@simplysf/simply-community-core 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +1 -1
- package/README.md +4 -4
- package/lib/checkPublishStatus.js +1 -1
- package/lib/deployChangedFiles.js +1 -1
- package/lib/index.js +1 -1
- package/lib/publishCommunity.js +1 -1
- package/lib/resolveSiteFiles.js +1 -1
- package/lib/retrieveCustomSite.js +1 -1
- package/lib/siteMetadataXml.js +1 -1
- package/lib/verifyDomain.js +1 -1
- package/package.json +6 -6
package/LICENSE.txt
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @simplysf/simply-community-core
|
|
2
2
|
|
|
3
|
-
[](https://npmjs.com/@simplysf/simply-community-core) [](https://npmjs.com/@simplysf/simply-community-core) [](https://raw.githubusercontent.com/SimplySF/simply-
|
|
3
|
+
[](https://npmjs.com/@simplysf/simply-community-core) [](https://npmjs.com/@simplysf/simply-community-core) [](https://raw.githubusercontent.com/SimplySF/simply-plugins-core/main/LICENSE.txt)
|
|
4
4
|
|
|
5
5
|
Community publish/deploy/domain-verification logic and site-file discovery. This is not a Salesforce CLI plugin — it's the library layer behind [`@simplysf/simply-community`](https://github.com/SimplySF/simply-plugins/tree/main/packages/simply-community)'s publish/URL commands, published separately so it can be imported directly by anything that wants the same logic (an editor extension, a CI job, a script) without pulling in the CLI framework.
|
|
6
6
|
|
|
@@ -60,12 +60,12 @@ const check = await verifyDomain(connection, 'my.example.com');
|
|
|
60
60
|
|
|
61
61
|
## Issues
|
|
62
62
|
|
|
63
|
-
Please report any issues at https://github.com/SimplySF/simply-
|
|
63
|
+
Please report any issues at https://github.com/SimplySF/simply-plugins-core/issues
|
|
64
64
|
|
|
65
65
|
## Contributing
|
|
66
66
|
|
|
67
|
-
This package is part of the [`@simplysf/simply`](https://github.com/SimplySF/simply-
|
|
67
|
+
This package is part of the [`@simplysf/simply`](https://github.com/SimplySF/simply-plugins-core) monorepo. See [CONTRIBUTING.md](CONTRIBUTING.md) for what's specific to this package, and the repo's [root CONTRIBUTING.md](https://github.com/SimplySF/simply-plugins-core/blob/main/CONTRIBUTING.md) for repo structure, setup, commit conventions, and how to submit a pull request. Please also read our [Code of Conduct](https://github.com/SimplySF/simply-plugins-core/blob/main/CODE_OF_CONDUCT.md).
|
|
68
68
|
|
|
69
69
|
## License
|
|
70
70
|
|
|
71
|
-
Licensed under the [Apache-2.0](https://raw.githubusercontent.com/SimplySF/simply-
|
|
71
|
+
Licensed under the [Apache-2.0](https://raw.githubusercontent.com/SimplySF/simply-plugins-core/main/LICENSE.txt) license.
|
package/lib/index.js
CHANGED
package/lib/publishCommunity.js
CHANGED
package/lib/resolveSiteFiles.js
CHANGED
package/lib/siteMetadataXml.js
CHANGED
package/lib/verifyDomain.js
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysf/simply-community-core",
|
|
3
3
|
"description": "Community publish/deploy/domain-verification logic and site-file discovery — the library layer behind @simplysf/simply-community, published separately for direct consumption (e.g. editor tooling, CI scripts) without the CLI framework",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.5",
|
|
5
5
|
"author": "@ClayChipps",
|
|
6
|
-
"homepage": "https://github.com/SimplySF/simply-
|
|
7
|
-
"bugs": "https://github.com/SimplySF/simply-
|
|
6
|
+
"homepage": "https://github.com/SimplySF/simply-plugins-core",
|
|
7
|
+
"bugs": "https://github.com/SimplySF/simply-plugins-core/issues",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/SimplySF/simply-
|
|
10
|
+
"url": "https://github.com/SimplySF/simply-plugins-core",
|
|
11
11
|
"directory": "packages/simply-community-core"
|
|
12
12
|
},
|
|
13
13
|
"engines": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@salesforce/core": "^8.30.0",
|
|
42
42
|
"@salesforce/kit": "^3.2.6",
|
|
43
43
|
"@salesforce/source-deploy-retrieve": "^12.37.2",
|
|
44
|
-
"@simplysf/simply-core": "^1.6.
|
|
44
|
+
"@simplysf/simply-core": "^1.6.4",
|
|
45
45
|
"glob": "^13.0.6",
|
|
46
46
|
"xmlbuilder2": "^4.0.3"
|
|
47
47
|
},
|
|
@@ -135,5 +135,5 @@
|
|
|
135
135
|
"output": []
|
|
136
136
|
}
|
|
137
137
|
},
|
|
138
|
-
"gitHead": "
|
|
138
|
+
"gitHead": "71ce9d30e732fcb9126605cef7ba857c6aa2ca1f"
|
|
139
139
|
}
|