Skip to content

Commit

Permalink
新建v8.0分支来跟踪ng8版本
Browse files Browse the repository at this point in the history
  • Loading branch information
rdkmaster committed Jun 5, 2020
1 parent fe862fc commit 7ab7fe0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ branches:
- master
- v1.1
- v5.0
- v8.0

env:
global:
Expand Down
1 change: 1 addition & 0 deletions build/scripts/build-tourist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ touristDir=`pwd`/../jigsaw-tourist
mkdir -p $touristDir
git clone https://github.com/rdkmaster/jigsaw-tourist.git $touristDir
cd $touristDir
git checkout v8.0
npm install

#update jigsaw npm package
Expand Down
1 change: 1 addition & 0 deletions build/scripts/integrate-with-seed.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ rm -fr $seedDir
mkdir -p $seedDir
git clone https://github.com/rdkmaster/jigsaw-seed.git $seedDir
cd $seedDir
git checkout v8.0
npm install

#update jigsaw npm package
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/patch-demos.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ function patchDemoTs(demoPath) {

const allFiles = [];
readAllFiles(demoPath);
const entries = allFiles.map(file => ` "${file}": require('!!raw-loader!./${file}'),`).join('\n');

const entries = allFiles.map(file => ` "${file}": require('!!raw-loader!./${file}'),`).join('\n');
const part1 = cmpCode.substring(0, end);
const part2 = cmpCode.substring(end).replace(/^\s*;?/, '');
cmpCode = `${part1}\n __codes: any = {\n${entries}\n };\n` +
Expand Down

0 comments on commit 7ab7fe0

Please sign in to comment.