File tree 2 files changed +19
-1
lines changed
2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 35
35
"demo.vue.ios" : " cd ./demo-vue && ns run ios --no-hmr --env.watchNodeModules" ,
36
36
"postinstall" : " npm run setup" ,
37
37
"publish" : " npm run clean && npm run build.all && npm run readme && lerna publish --no-private --create-release=github --force-publish" ,
38
- "readme" : " node ./tools/readme.js" ,
38
+ "readme" : " lerna run readme && node ./tools/readme.js" ,
39
39
"setup" : " npm run submodules && ts-patch install" ,
40
40
"start" : " ./node_modules/.bin/ntl -A -s 15 -o" ,
41
41
"submodules" : " git submodule update --init" ,
Original file line number Diff line number Diff line change
1
+ const sveltePreprocess = require ( 'svelte-preprocess' ) ;
2
+ // const svelteNativePreprocessor = require('svelte-native-preprocessor');
3
+
4
+ module . exports = {
5
+ compilerOptions : {
6
+ namespace : 'foreign'
7
+ } ,
8
+ preprocess : [
9
+ sveltePreprocess ( {
10
+ typescript : {
11
+ compilerOptions : {
12
+ target : 'es2020'
13
+ }
14
+ }
15
+ } )
16
+ // svelteNativePreprocessor()
17
+ ]
18
+ } ;
You can’t perform that action at this time.
0 commit comments