'a'
mh-two-thousand-and-two
2024-04-12 44d2c92345cd156a59fc327b3060292a282d2893
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
const fs = require('fs-extra');
const chalk = require('chalk');
const ignore = require('ignore');
const { execSync } = require('node:child_process');
 
console.log();
console.log(chalk.yellowBright(`⚠️ You should have run ${chalk.bold('`npm run release`')} before running this script!`));
console.log();
 
// check versions in key dist files
 
console.log(chalk.yellow('🔎 Checking versions in dist files...'));
 
const fileVersions = [
    'package.json',
    'package-lock.json',
    'dist/zrender.js',
    'dist/zrender.min.js'
].map(filePath => ({
    file: filePath,
    version: require('../' + filePath).version
}));
 
['lib/zrender.js', 'src/zrender.ts'].forEach(filePath => {
    const version = fs.readFileSync(filePath, 'utf-8').match(/export (?:var|const) version = '(\S+)'/)[1];
    fileVersions.push({
        file: filePath,
        version: version
    });
});
 
const versions = fileVersions.map(({ file, version }) => {
    console.log(`  ∟ The version in [${chalk.blueBright(file)}] is ${chalk.cyanBright.bold(version)}`);
    return version;
});
 
if (new Set(versions).size !== 1) {
    console.log();
    console.error(chalk.red('❌ Version does not match! Please check and rerun the release script via:'));
    console.log();
    console.error(chalk.yellow('     npm run release'));
    console.log();
    process.exit(-1);
}
 
console.log();
console.log(chalk.green('✔️ Versions are all the same.'));
console.log();
 
console.log(chalk.yellow('🔎 Checking unexpected files that probably shouldn\'t be published...\n'));
 
// check if there are unexpected files that not in .npmignore
const npmignore = fs.readFileSync('.npmignore', 'utf-8');
const npmignorePatterns = npmignore
    .split(/\r?\n/)
    .filter(item => item && !item.startsWith('#'));
 
const untrackedFiles = execSync('git ls-files --others --exclude-standard', { encoding: 'utf-8' })
    .trim()
    .split('\n')
    .map(escapeOctal);
 
if (untrackedFiles.length) {
    const maybeUnexpectedFiles = ignore().add(npmignorePatterns).filter(untrackedFiles);
    if (maybeUnexpectedFiles.length) {
        console.error(chalk.red(`❌ Found ${maybeUnexpectedFiles.length} file(s) that are neither tracked by git nor ignored by .npmignore! Please double-check before publishing them to npm.`));
        maybeUnexpectedFiles.forEach(filePath => {
            console.log('  ∟ ' + filePath);
        });
        console.log();
        process.exit(-1);
    }
}
 
console.log(chalk.green('✔️ No unexpected files found.'));
console.log();
 
function escapeOctal(str) {
    const matches = str.match(/(\\\d{3}){3}/g);
    if (matches) {
        matches.forEach(match => {
            let encoded = '';
            match.split('\\').forEach(code => !code || (encoded += '%' + parseInt(code, 8).toString(16)));
            str = str.replace(match, decodeURI(encoded));
        });
    }
    return str;
}