@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 +2 -1
- package/commitlint.config.ts +1 -3
- package/package.json +3 -2
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
|
|
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.
|
package/commitlint.config.ts
CHANGED
|
@@ -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
|
-
|
|
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.
|
|
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",
|