livecode代码开发分支
Some checks failed
CI-build / build (18.x) (push) Has been cancelled
CI-type-checking / type-check (18.x) (push) Has been cancelled
CI-typos / Spell Check (push) Has been cancelled
Deploy / deploy (push) Has been cancelled

This commit is contained in:
yangxin
2025-06-11 21:29:36 +08:00
commit 9f96998eb8
493 changed files with 75326 additions and 0 deletions

34
.bundlewatch.config.js Normal file
View File

@@ -0,0 +1,34 @@
module.exports = {
files: [
{
path: './build/sdk/*.js',
maxSize: '5kB',
},
{
path: './build/livecodes/!(*lang-)*.js',
maxSize: '30kB',
},
{
path: './build/livecodes/*(app|embed|headless).*.js',
maxSize: '120kB',
},
{
path: './build/livecodes/lang-*.js',
maxSize: '20kB',
},
{
path: './build/livecodes/*.css',
maxSize: '25kB',
},
{
path: './build/livecodes/i18n-*.json',
maxSize: '15kB',
},
],
defaultCompression: 'brotli',
normalizeFilenames: /^.+?((\.[^.]{8,}}?)|())\.\w+$/,
ci: {
repoBranchBase: 'develop',
trackBranches: ['main', 'develop'],
},
};