[add] first

This commit is contained in:
2022-04-29 15:25:10 +08:00
commit da8024fc30
87 changed files with 16892 additions and 0 deletions

7
scripts/copyright.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = `/*!
* TSRPC v${require('../package.json').version}
* -----------------------------------------
* Copyright (c) King Wang.
* MIT License
* https://github.com/k8w/tsrpc
*/`

26
scripts/postBuild.js Normal file
View File

@@ -0,0 +1,26 @@
const fs = require('fs');
const path = require('path');
// remove private / protected index.d.ts
(() => {
let content = fs.readFileSync(path.resolve(__dirname, '../dist/index.d.ts'), 'utf-8');
content = content.replace(/^\s*(private|protected)\s+\_.+;/g, '');
content = require('./copyright') + '\n' + content;
fs.writeFileSync(path.resolve(__dirname, '../dist/index.d.ts'), content, 'utf-8');
})();
// replace __TSRPC_VERSION__from index.js/mjs
[
path.resolve(__dirname, '../dist/index.js'),
path.resolve(__dirname, '../dist/index.mjs')
].forEach(filepath => {
let content = fs.readFileSync(filepath, 'utf-8');
content = content.replace('__TSRPC_VERSION__', require('../package.json').version);;
fs.writeFileSync(filepath, content, 'utf-8');
});
// mongodb-polyfill
fs.copyFileSync(path.resolve(__dirname, '../res/mongodb-polyfill.d.ts'), path.resolve(__dirname, '../dist/mongodb-polyfill.d.ts'));
let content = fs.readFileSync(path.resolve(__dirname, '../dist/index.d.ts'), 'utf-8');
content = content.replace(`/// <reference types="node" />`, `/// <reference types="node" />\n/// <reference path="mongodb-polyfill.d.ts" />`)
fs.writeFileSync(path.resolve(__dirname, '../dist/index.d.ts'), content, 'utf-8');