File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
scripts/process-messages/templates Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 99
99
" templating"
100
100
],
101
101
"scripts" : {
102
- "build" : " rollup -c && pnpm generate:types && node scripts/check-treeshakeability.js" ,
103
- "dev" : " rollup -cw" ,
102
+ "build" : " node scripts/process-messages && rollup -c && pnpm generate:types && node scripts/check-treeshakeability.js" ,
103
+ "dev" : " node scripts/process-messages && rollup -cw" ,
104
104
"check" : " tsc && cd ./tests/types && tsc" ,
105
105
"check:watch" : " tsc --watch" ,
106
106
"generate:version" : " node ./scripts/generate-version.js" ,
Original file line number Diff line number Diff line change @@ -2,12 +2,13 @@ import { getLocator } from 'locate-character';
2
2
3
3
/** @typedef {{ start?: number, end?: number } } NodeLike */
4
4
5
- // TODO no need to export these, it's temporary
6
5
/** @type {import('#compiler').Warning[] } */
7
- export let warnings = [ ] ;
6
+ let warnings = [ ] ;
7
+
8
8
/** @type {string | undefined } */
9
- export let filename ;
10
- export let locator = getLocator ( '' , { offsetLine : 1 } ) ;
9
+ let filename ;
10
+
11
+ let locator = getLocator ( '' , { offsetLine : 1 } ) ;
11
12
12
13
/**
13
14
* @param {{
You can’t perform that action at this time.
0 commit comments