@mj-biz-apps/common-activity-sync 0.0.0
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/README.md +12 -0
- package/package.json +9 -0
package/README.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# @mj-biz-apps/common-activity-sync
|
|
2
|
+
|
|
3
|
+
Name placeholder so `bizapps-common`'s release workflow can publish the real package.
|
|
4
|
+
|
|
5
|
+
`.github/scripts/validate-npm-packages.sh` refuses to publish a release containing a package
|
|
6
|
+
that does not yet exist on npm, to prevent a partial publish where the rest of the fixed
|
|
7
|
+
`@mj-biz-apps/*` group goes out and this one 404s. Its remedy is exactly this file:
|
|
8
|
+
|
|
9
|
+
> For each missing package, publish a 0.0.0 placeholder manually before
|
|
10
|
+
> the automated workflow can take over.
|
|
11
|
+
|
|
12
|
+
The first real version is **5.37.0**, published by the bizapps-common release.
|
package/package.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mj-biz-apps/common-activity-sync",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Placeholder. The real package is published from bizapps-common; see https://github.com/MemberJunction/bizapps-common",
|
|
5
|
+
"license": "BUSL-1.1",
|
|
6
|
+
"author": "MemberJunction.com",
|
|
7
|
+
"publishConfig": { "access": "public" },
|
|
8
|
+
"repository": { "type": "git", "url": "https://github.com/MemberJunction/bizapps-common" }
|
|
9
|
+
}
|