File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 30
30
"testInteg" : " npm run testInteg -w packages/" ,
31
31
"package" : " npm run package -w packages/" ,
32
32
"newChange" : " ts-node ./scripts/newChange.ts" ,
33
- "createRelease" : " npm run createRelease -w packages/ " ,
33
+ "createRelease" : " ts-node ./scripts/createRelease.ts " ,
34
34
"format" : " prettier --check plugins && npm run format -w packages/" ,
35
35
"formatfix" : " prettier --write plugins && npm run formatfix -w packages/" ,
36
36
"lint" : " npm run lint -w packages/ && npm run format" ,
Original file line number Diff line number Diff line change 4
4
5
5
# Ignore outside dirs up to the root package.json, otherwise those will be collected as well
6
6
# (until vsce officially supports workspaces: https://github.com/microsoft/vscode-vsce/issues/580)
7
+ .. /*
7
8
.. /.. /*
8
9
.. /.. /* /**
9
10
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ function main() {
116
116
// Create backup files so we can restore the originals later.
117
117
fs . copyFileSync ( packageJsonFile , `${ packageJsonFile } .bk` )
118
118
fs . copyFileSync ( webpackConfigJsFile , `${ webpackConfigJsFile } .bk` )
119
+ fs . copyFileSync ( '../../CHANGELOG.md' , 'CHANGELOG.md' )
119
120
120
121
const packageJson : typeof PackageJson = JSON . parse ( fs . readFileSync ( packageJsonFile , { encoding : 'utf-8' } ) )
121
122
const versionSuffix = getVersionSuffix ( args . feature , args . debug )
Original file line number Diff line number Diff line change 10
10
import * as child_process from 'child_process'
11
11
import * as fs from 'fs-extra'
12
12
import * as path from 'path'
13
- import { version } from '../.. /package.json'
13
+ import { version } from '../packages/toolkit /package.json'
14
14
15
15
const cwd = process . cwd ( )
16
- const changesDirectory = path . join ( cwd , '../../. changes' )
16
+ const changesDirectory = path . join ( cwd , '.changes' )
17
17
const nextReleaseDirectory = path . join ( changesDirectory , 'next-release' )
18
18
const changesFile = path . join ( changesDirectory , `${ version } .json` )
19
19
You can’t perform that action at this time.
0 commit comments