mirror of
https://github.com/classchartsapi/classcharts-api-js.git
synced 2026-05-14 11:58:13 +00:00
chore: release stuff
This commit is contained in:
parent
08f9fc8078
commit
7e988a06f9
3 changed files with 41 additions and 3 deletions
1
.npmignore
Normal file
1
.npmignore
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
release.js
|
||||||
|
|
@ -3,11 +3,12 @@
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "",
|
"description": "",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "https://github.com/jamesatjaminit/"
|
"url": "https://github.com/jamesatjaminit/classcharts-api"
|
||||||
},
|
},
|
||||||
"main": "dist/index.js",
|
"main": "./index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
|
"prepublishOnly": "npx tsc && node dist/release.js"
|
||||||
},
|
},
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
|
|
|
||||||
36
src/release.ts
Normal file
36
src/release.ts
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
import fs from 'fs'
|
||||||
|
|
||||||
|
// DO NOT DELETE THIS FILE
|
||||||
|
// This file is used by build system to build a clean npm package with the compiled js files in the root of the package.
|
||||||
|
// It will not be included in the npm package.
|
||||||
|
|
||||||
|
function main() {
|
||||||
|
const source = fs
|
||||||
|
.readFileSync(__dirname + '/../package.json')
|
||||||
|
.toString('utf-8')
|
||||||
|
const sourceObj = JSON.parse(source)
|
||||||
|
sourceObj.scripts = {}
|
||||||
|
sourceObj.devDependencies = {}
|
||||||
|
if (sourceObj.main.startsWith('dist/')) {
|
||||||
|
sourceObj.main = sourceObj.main.slice(5)
|
||||||
|
}
|
||||||
|
fs.writeFileSync(
|
||||||
|
__dirname + '/package.json',
|
||||||
|
Buffer.from(JSON.stringify(sourceObj, null, 2), 'utf-8')
|
||||||
|
)
|
||||||
|
fs.writeFileSync(
|
||||||
|
__dirname + '/version.txt',
|
||||||
|
Buffer.from(sourceObj.version, 'utf-8')
|
||||||
|
)
|
||||||
|
try {
|
||||||
|
fs.mkdirSync(__dirname + '/types/')
|
||||||
|
} catch {}
|
||||||
|
|
||||||
|
fs.copyFileSync(
|
||||||
|
__dirname + '/../types/index.d.ts',
|
||||||
|
__dirname + '/types/index.d.ts'
|
||||||
|
)
|
||||||
|
fs.copyFileSync(__dirname + '/../.npmignore', __dirname + '/.npmignore')
|
||||||
|
}
|
||||||
|
|
||||||
|
main()
|
||||||
Loading…
Add table
Add a link
Reference in a new issue