Build: Implemented theatre.update-versions script
This commit is contained in:
parent
2342e83d49
commit
dfcd2814ae
4 changed files with 27 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@theatre/core",
|
||||
"version": "0.4.0-dev.1",
|
||||
"version": "0.4.0-dev.2",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Motion design editor for the web",
|
||||
"repository": {
|
||||
|
@ -42,4 +42,4 @@
|
|||
"dependencies": {
|
||||
"@theatre/dataverse": "workspace:*"
|
||||
}
|
||||
}
|
||||
}
|
19
theatre/devEnv/updateVersions.ts
Normal file
19
theatre/devEnv/updateVersions.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
import {writeFileSync} from 'fs'
|
||||
import path from 'path'
|
||||
|
||||
const theatreDir = path.join(__dirname, '..')
|
||||
const version = require('../package.json').version
|
||||
|
||||
for (const which of ['core', 'studio']) {
|
||||
const original = require('../' + which + '/package.json')
|
||||
if (original.version !== version) {
|
||||
console.log(`Setting version of @theatre/${which} to ${version}`)
|
||||
|
||||
const newJson = {...original}
|
||||
newJson.version = version
|
||||
writeFileSync(
|
||||
path.join(theatreDir, `./${which}/package.json`),
|
||||
JSON.stringify(newJson, undefined, 2),
|
||||
)
|
||||
}
|
||||
}
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"private": true,
|
||||
"version": "0.4.0-dev.2",
|
||||
"workspaces": [
|
||||
"./shared",
|
||||
"./core",
|
||||
|
@ -11,7 +13,8 @@
|
|||
"build:dts": "run-s typecheck build:dts:bundle",
|
||||
"build:dts:bundle": "rollup -c devEnv/declarations-bundler/rollup.config.js",
|
||||
"build": "run-p build:dts build:js",
|
||||
"prepare": "run-s build"
|
||||
"prepare": "run-s update-versions build",
|
||||
"update-versions": "node -r esbuild-register devEnv/updateVersions.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.14.3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@theatre/studio",
|
||||
"version": "0.4.0-dev.1",
|
||||
"version": "0.4.0-dev.2",
|
||||
"license": "AGPL-3.0-only",
|
||||
"description": "Motion design editor for the web",
|
||||
"repository": {
|
||||
|
@ -45,4 +45,4 @@
|
|||
"peerDependencies": {
|
||||
"@theatre/core": "*"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue