@madgex/fert 1.5.3 → 1.6.1
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/.github/workflows/release.yml +14 -2
- package/README.md +3 -19
- package/bin/cli.js +4 -0
- package/bin/commands/dev-server.js +3 -1
- package/bin/utils/index.js +4 -1
- package/constants.js +4 -0
- package/package.json +16 -16
- package/server/index.js +1 -0
- package/delivery/git.cer +0 -22
|
@@ -19,11 +19,23 @@ jobs:
|
|
|
19
19
|
uses: actions/setup-node@v2
|
|
20
20
|
with:
|
|
21
21
|
cache: npm
|
|
22
|
-
node-version:
|
|
22
|
+
node-version: 20
|
|
23
|
+
|
|
24
|
+
- name: Setup SSH Keys and known_hosts
|
|
25
|
+
env:
|
|
26
|
+
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
|
|
27
|
+
run: |
|
|
28
|
+
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
|
|
29
|
+
ssh-add - <<< "${{ secrets.MADGEX_GITHUB_SSH_KEY }}"
|
|
30
|
+
|
|
23
31
|
- name: Install dependencies
|
|
24
32
|
run: npm ci
|
|
33
|
+
env:
|
|
34
|
+
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
|
|
35
|
+
NPM_TOKEN: ${{ secrets.MADGEX_NPM_TOKEN }}
|
|
36
|
+
|
|
25
37
|
- name: Release
|
|
26
38
|
env:
|
|
27
39
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
28
|
-
NPM_TOKEN: ${{ secrets.
|
|
40
|
+
NPM_TOKEN: ${{ secrets.MADGEX_NPM_TOKEN }}
|
|
29
41
|
run: npx semantic-release
|
package/README.md
CHANGED
|
@@ -71,6 +71,7 @@ e.g.
|
|
|
71
71
|
| --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
72
72
|
| `clientPropertyId` <String> | The `clientPropertyId` associated with the branding repo (required) |
|
|
73
73
|
| `entry` <String> | The JavaScript entry file. Any assets (CSS/SCSS/SVGs) included will be processed and be part of the output. Defaults to `['src/index.js']` |
|
|
74
|
+
| `assumeSite` <String> | Which site we want to display, jobseeker site or recruiter site. Values are either `js` or `rs`.
|
|
74
75
|
|
|
75
76
|
The `entry` will be used by Vite to create production bundles.
|
|
76
77
|
|
|
@@ -80,6 +81,7 @@ e.g.
|
|
|
80
81
|
module.exports = {
|
|
81
82
|
clientPropertyId: "ff6102ff-0f4b-43d1-a2c7-83b835b8dee5",
|
|
82
83
|
entry: "./src/index.js",
|
|
84
|
+
assumeSite: "js",
|
|
83
85
|
};
|
|
84
86
|
```
|
|
85
87
|
|
|
@@ -211,22 +213,4 @@ Here are the default npm scripts in a Fert-scaffolded project.
|
|
|
211
213
|
}
|
|
212
214
|
```
|
|
213
215
|
|
|
214
|
-
Its expected that a Jenkins pipeline will run `fert publish` to send all built assets to the Asset Store API.
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
# @madgex/boilerplate-utils
|
|
219
|
-
|
|
220
|
-
A collection of utilities for use in branding projects, e.g.
|
|
221
|
-
|
|
222
|
-
* Hamburger nav HTML/CSS/JS
|
|
223
|
-
|
|
224
|
-
* common SCSS
|
|
225
|
-
|
|
226
|
-
* SVGs
|
|
227
|
-
|
|
228
|
-
* templates/macros
|
|
229
|
-
|
|
230
|
-
If needed, this package can be `npm install`ed in the branding project & consumed from the JS/SCSS.
|
|
231
|
-
|
|
232
|
-
Templates/macros will have to be copied into the branding repo as they won't be visible/available to the server rendering the template.
|
|
216
|
+
Its expected that a Jenkins pipeline will run `fert publish` to send all built assets to the Asset Store API.
|
package/bin/cli.js
CHANGED
|
@@ -18,6 +18,10 @@ const run = () => {
|
|
|
18
18
|
.option('--open', 'Automatically open the dev server in your browser')
|
|
19
19
|
.option('--host [host]', '[string] specify hostname')
|
|
20
20
|
.option('--port <port>', '[number] specify port')
|
|
21
|
+
.option(
|
|
22
|
+
'--assume-site [site]',
|
|
23
|
+
'Use jobseeker or recruiter site, "js" or "rs"'
|
|
24
|
+
)
|
|
21
25
|
.action((...args) => require('./commands/dev-server')(...args));
|
|
22
26
|
|
|
23
27
|
cli
|
|
@@ -17,7 +17,9 @@ module.exports = async (root, options = {}) => {
|
|
|
17
17
|
console.log(
|
|
18
18
|
`Starting branding server for ${chalk.green(
|
|
19
19
|
fertConfig.client.brandName
|
|
20
|
-
)} ${chalk.dim(
|
|
20
|
+
)} [${fertConfig.assumeSite}] ${chalk.dim(
|
|
21
|
+
`(${fertConfig.clientPropertyId})`
|
|
22
|
+
)}\n`
|
|
21
23
|
);
|
|
22
24
|
|
|
23
25
|
// watch brand.json & fert.config.js - refresh on change
|
package/bin/utils/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const path = require('path');
|
|
2
2
|
const fs = require('fs');
|
|
3
3
|
const fsp = require('fs/promises');
|
|
4
|
-
const { VERSION } = require('../../constants');
|
|
4
|
+
const { VERSION, SITE } = require('../../constants');
|
|
5
5
|
const chalk = require('chalk');
|
|
6
6
|
const uuidValidator = require('uuid-validate');
|
|
7
7
|
const Hoek = require('@hapi/hoek');
|
|
@@ -36,6 +36,9 @@ exports.resolveConfig = async (root, options = {}) => {
|
|
|
36
36
|
|
|
37
37
|
fertConfig.externalAssets = resolveExternalAssets(fertConfig.externalAssets);
|
|
38
38
|
|
|
39
|
+
fertConfig.assumeSite =
|
|
40
|
+
SITE[options.assumeSite] || SITE[fertConfig.assumeSite] || SITE.js;
|
|
41
|
+
|
|
39
42
|
return {
|
|
40
43
|
...fertConfig,
|
|
41
44
|
workingDir,
|
package/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@madgex/fert",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Tool to help build the V6 branding",
|
|
5
5
|
"bin": {
|
|
6
6
|
"fert": "./bin/cli.js"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"author": "Madgex",
|
|
24
24
|
"license": "UNLICENSED",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@aws-sdk/client-ssm": "^3.
|
|
27
|
-
"@aws-sdk/credential-providers": "^3.
|
|
26
|
+
"@aws-sdk/client-ssm": "^3.453.0",
|
|
27
|
+
"@aws-sdk/credential-providers": "^3.451.0",
|
|
28
28
|
"@hapi/hapi": "^21.3.2",
|
|
29
29
|
"@hapi/hoek": "^11.0.2",
|
|
30
30
|
"@hapi/inert": "^7.1.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@hapipal/toys": "^4.0.0",
|
|
33
33
|
"@madgex/design-system": "*",
|
|
34
34
|
"@private/header-footer-podlet-server": "github:wiley/madgex-header-footer-podlet",
|
|
35
|
-
"axios": "^1.
|
|
35
|
+
"axios": "^1.6.2",
|
|
36
36
|
"cac": "^6.7.14",
|
|
37
37
|
"chalk": "4.1.2",
|
|
38
38
|
"chokidar": "^3.5.3",
|
|
39
|
-
"dayjs": "^1.11.
|
|
39
|
+
"dayjs": "^1.11.10",
|
|
40
40
|
"debug": "^4.3.4",
|
|
41
41
|
"form-data": "^4.0.0",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
@@ -45,26 +45,26 @@
|
|
|
45
45
|
"open": "8.4.2",
|
|
46
46
|
"ora": "5.4.1",
|
|
47
47
|
"prompts": "^2.4.2",
|
|
48
|
-
"rimraf": "^5.0.
|
|
49
|
-
"sass": "^1.
|
|
48
|
+
"rimraf": "^5.0.5",
|
|
49
|
+
"sass": "^1.69.5",
|
|
50
50
|
"simple-update-notifier": "^2.0.0",
|
|
51
|
-
"style-dictionary": "^3.
|
|
51
|
+
"style-dictionary": "^3.9.0",
|
|
52
52
|
"uuid-validate": "^0.0.3",
|
|
53
53
|
"vite": "^4.4.9",
|
|
54
|
-
"vite-plugin-static-copy": "^0.17.
|
|
54
|
+
"vite-plugin-static-copy": "^0.17.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@commitlint/cli": "^
|
|
58
|
-
"@commitlint/config-conventional": "^
|
|
57
|
+
"@commitlint/cli": "^18.4.2",
|
|
58
|
+
"@commitlint/config-conventional": "^18.4.2",
|
|
59
59
|
"commitizen": "^4.3.0",
|
|
60
60
|
"cz-conventional-changelog": "^3.3.0",
|
|
61
|
-
"eslint": "^8.
|
|
61
|
+
"eslint": "^8.53.0",
|
|
62
62
|
"eslint-config-prettier": "^9.0.0",
|
|
63
|
-
"eslint-plugin-prettier": "^5.0.
|
|
63
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
64
64
|
"husky": "^8.0.3",
|
|
65
|
-
"lint-staged": "^
|
|
66
|
-
"prettier": "^3.0
|
|
67
|
-
"semantic-release": "^
|
|
65
|
+
"lint-staged": "^15.1.0",
|
|
66
|
+
"prettier": "^3.1.0",
|
|
67
|
+
"semantic-release": "^22.0.8"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"@ctrl/tinycolor": "^3.6.0"
|
package/server/index.js
CHANGED
|
@@ -40,6 +40,7 @@ exports.devServer = async ({ start, fertConfig = {} } = {}) => {
|
|
|
40
40
|
templatePath: [path.resolve(fertConfig.workingDir, 'templates')],
|
|
41
41
|
clientPropertiesApi: PROPERTY_ID_API,
|
|
42
42
|
assetsApiUrl: ASSETS_API_URL,
|
|
43
|
+
layout: fertConfig.assumeSite,
|
|
43
44
|
},
|
|
44
45
|
routes: { prefix: '/_podlet' },
|
|
45
46
|
});
|
package/delivery/git.cer
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
|
2
|
-
MIIDmzCCAoOgAwIBAgIQFausXHONQJZAJThAIzsEMzANBgkqhkiG9w0BAQsFADBC
|
|
3
|
-
MRUwEwYKCZImiZPyLGQBGRYFbG9jYWwxGDAWBgoJkiaJk/IsZAEZFghDbGFyZW5j
|
|
4
|
-
ZTEPMA0GA1UEAxMGcm9vdGNhMB4XDTIyMDgxNzE0MDgxNVoXDTMyMDgxODEwMTAx
|
|
5
|
-
NVowQjEVMBMGCgmSJomT8ixkARkWBWxvY2FsMRgwFgYKCZImiZPyLGQBGRYIQ2xh
|
|
6
|
-
cmVuY2UxDzANBgNVBAMTBnJvb3RjYTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
|
|
7
|
-
AQoCggEBAKBP9oZ923t+O3ydOoZtptE70cxFA9B7BM9tNVWvKU93LeUc/Sj1nd0M
|
|
8
|
-
nToMElEfKasUWPBOaNS1Nkz7UZ8FhibNzqGp5LwFQxFzYoCIEB5eWumECUV5mrey
|
|
9
|
-
4wKt5cZypQ33bwAhlvtP2MHBaYd/GBfYVww7k81SWaOTMfZLO4jPbTrPe2vJo4Zr
|
|
10
|
-
4YXkK/ntGGlUrYG+L7cEACbdLtaTU53ORBSAZhRSFh9Xfc8JRuh6mBu5To/LX8S/
|
|
11
|
-
gA2EeCWGqQxh3gUjxKpMtMQ7+DzHfpLSYdEQGBG2rnqY8d9+v6hAfuJW+BFlyOvX
|
|
12
|
-
Q6l+3ejKg7YFZmOvKKztFNI0SdvU5hECAwEAAaOBjDCBiTATBgkrBgEEAYI3FAIE
|
|
13
|
-
Bh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU
|
|
14
|
-
EBokiBcrmgWuf693v8CNxfKtY2EwEAYJKwYBBAGCNxUBBAMCAQEwIwYJKwYBBAGC
|
|
15
|
-
NxUCBBYEFKUcb/T4F7x8uAJsibz0HRxxqAdrMA0GCSqGSIb3DQEBCwUAA4IBAQCg
|
|
16
|
-
KoV0dXGIRfPZzVl0eWQ04k66R6kOkOP+y/toy7KcYvi2+HjgXkZ/YWcKs6U1okxv
|
|
17
|
-
jTLSnDOBP0yUoISSNGjZhHpt5ChOdHd0g1RP/sHO0ruvCq8x0tM3kjxq6z0ki1wG
|
|
18
|
-
zW8ffmiZIFfQcaPnzhEkgB89EClHD8kz/cHNg369/CotrWZfoIYudDD6pupF0Jb8
|
|
19
|
-
IWnY0IL1CF2W5qI7PxmBwtp8zNY2st1qMnebYiVCqtIsZ2Wa2Qs33+BmzxcLC7lz
|
|
20
|
-
dZvXCqqMb+nbLBo5jg33XgsJ6+GIuTJYp+bSC+zDtPUSi6/3o22I8dmOLRmIe9la
|
|
21
|
-
//Jyi53PL8XbWMkiEQzs
|
|
22
|
-
-----END CERTIFICATE-----
|