-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathreplace-jsdelivr.js
67 lines (59 loc) · 1.84 KB
/
replace-jsdelivr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// @ts-check
/**
* This script will replace all "version number" occurrences from jsDelivr urls so that it will point to the latest version.
* This script runs on "version lifecycle" - https://github.com/lerna/lerna/blob/main/commands/version/README.md#lifecycle-scripts
*
* @example https://cdn.jsdelivr.net/npm/@commercelayer/drop-in.js@2/dist/drop-in/drop-in.esm.js
* @example `drop-in.js@2`
* @example `drop-in.js@2.11.2`
*/
import { replaceInFileSync } from 'replace-in-file'
import lernaJson from './lerna.json' assert { type: 'json' }
const [major, minor, patch] = lernaJson.version.split('.')
/** @type { Pick<import('replace-in-file').ReplaceInFileConfig, 'from' | 'to'>[] } */
const tasks = [
{
from: /(https:\/\/cdn.jsdelivr.net\/npm\/@commercelayer\/drop-in.js@)([0-9a-z\.\-]+)(\/)/g,
to: `$1${major}$3`
},
{
from: /`(drop-in.js@)([0-9]+)`/g,
to: `\`$1${major}\``
},
{
from: /`(drop-in.js@)([0-9]+\.[0-9]+\.[0-9a-z\-]+)`/g,
to: `\`$1${lernaJson.version}\``
},
{
from: /({\/\* DO NOT REMOVE - replace version \*\/}v)([0-9a-z\.\-]+)/g,
to: `$1${lernaJson.version}`
}
]
try {
const results = tasks.flatMap(task => replaceInFileSync({
dry: false,
ignore: [
'./node_modules/**',
'./**/node_modules/**',
],
files: [
'./**/*.md*',
'./**/*.ts*',
'./**/*.js*',
'./packages/docs/.storybook/**/*.ts*',
'./packages/docs/.storybook/**/*.js*',
],
...task
}))
const filteredResults = results.filter(r => r.hasChanged).map(r => r.file)
let uniqueFilteredResults = [...new Set(filteredResults)];
if (uniqueFilteredResults.length > 0) {
console.group('Updating "jsDelivr" version:', )
uniqueFilteredResults.forEach(r => {
console.info('→', r)
})
console.groupEnd()
}
} catch (error) {
console.error('Error occurred:', error)
}