@infoxchange/make-it-so 3.1.1 → 3.1.2

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 CHANGED
@@ -168,4 +168,5 @@ If adding a new component I've found that the easiest way to develop it is by fi
168
168
  is intended to be used in. When it appears to be working correctly it can be moved into the make-it-so repos and the app can
169
169
  be updated to import that component from make-it-so.
170
170
 
171
- To test change a change in make-it-so create a branch starting with the prefix "internal-testing-". When pushed the CI will release a new package with a pre-release version. It'll look a little something like `2.1.3-internal-testing-name-of-feature.3`. A serverless app using make-it-so can be modified to use this package version and then deployed to a dev environment to test that the make-it-so changes are functioning correctly. Once a change has been merged into main and there are no serverless apps using the pre-release package any more it's a good idea to [delete that version](https://docs.npmjs.com/unpublishing-packages-from-the-registry#unpublishing-a-single-version-of-a-package) to keep the [npm package version history clean](https://www.npmjs.com/package/@infoxchange/make-it-so?activeTab=versions).
171
+ To test change a change in make-it-so run `npx git-publish`. This will build then pushed the built files into a
172
+ new branch. That branch can then be used as a package.json dependency directly.
@@ -5,9 +5,7 @@ export default {
5
5
  (message) =>
6
6
  // Allow "wip" commits except when publishing a production release or on PR CI jobs
7
7
  process.env.GITHUB_EVENT_NAME !== "pull_request" &&
8
- (process.env.GITHUB_WORKFLOW !== "Publish" ||
9
- (process.env.GITHUB_REF_NAME?.startsWith("internal-testing-") ??
10
- true)) &&
8
+ process.env.GITHUB_WORKFLOW !== "Publish" &&
11
9
  (message === "wip" || message.startsWith("wip:")),
12
10
  ],
13
11
  extends: ["@commitlint/config-conventional"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infoxchange/make-it-so",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "Makes deploying services to IX infra easy",
5
5
  "repository": "github:infoxchange/make-it-so",
6
6
  "publishConfig": {
@@ -15,7 +15,8 @@
15
15
  "prepare": "husky",
16
16
  "test": "vitest",
17
17
  "//fix-signature-issue-with-pulumiverse-vercel": "The sed command below patches the version of @pulumiverse/vercel in the sst3 platform package to a version that has the fix for the Pulumi signature issue.",
18
- "postinstall": "! test -d node_modules/sst3 || ( cd node_modules/sst3/platform && sed -i.bak 's/\"@pulumiverse\\/vercel\": \"1.11.0\"/\"@pulumiverse\\/vercel\": \"3.1.1\"/' package.json && echo 'Installing SST v3 dependencies' && npm install )"
18
+ "postinstall": "! test -d node_modules/sst3 || ( cd node_modules/sst3/platform && sed -i.bak 's/\"@pulumiverse\\/vercel\": \"1.11.0\"/\"@pulumiverse\\/vercel\": \"3.1.1\"/' package.json && echo 'Installing SST v3 dependencies' && npm install )",
19
+ "prepack": "npm run build"
19
20
  },
20
21
  "author": "Infoxchange Vic Dev Team <vicdevs@infoxchange.org>",
21
22
  "license": "MIT",