Skip to content

Commit 2d1c076

Browse files
committed
new yarn fetchsources
1 parent 20b2f5d commit 2d1c076

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

client/dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ function render() {
6161
}), _defineProperty(_React$createElement, 'headers', {
6262
foo: 'bar'
6363
}), _defineProperty(_React$createElement, 'intervals', {
64-
searchBarPlaceholder: 8000
64+
searchBarPlaceholder: 60000
6565
}), _React$createElement)), document.getElementById('root'));
6666
}

client/dist/model/reducers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var initialConfigState = {
3434
assetsBasePath: './assets/',
3535
emphasisFocusedMediaItem: true,
3636
headers: { 'Powered-By': 'Eureka by Markup.tips' },
37-
intervals: { searchBarPlaceholder: false, fetchDirectoryContents: 18000, updateSourceTree: false },
37+
intervals: { searchBarPlaceholder: 60000, fetchDirectoryContents: 18000, updateSourceTree: false },
3838
callbacks: {
3939
close: undefined,
4040
choose: undefined

client/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function render() {
5353
foo: 'bar'
5454
}}
5555
intervals={{
56-
searchBarPlaceholder: 8000
56+
searchBarPlaceholder: 60000
5757
}}
5858
/>,
5959
document.getElementById('root')

client/src/model/reducers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const initialConfigState = {
2424
assetsBasePath:'./assets/',
2525
emphasisFocusedMediaItem:true,
2626
headers:{'Powered-By': 'Eureka by Markup.tips'},
27-
intervals:{searchBarPlaceholder: false,fetchDirectoryContents: 18000,updateSourceTree: false},
27+
intervals:{searchBarPlaceholder: 60000, fetchDirectoryContents: 18000, updateSourceTree: false},
2828
callbacks: {
2929
close: undefined,
3030
choose: undefined

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"oldprestart": "yarn && cd ./client && yarn && cd ../",
7777
"start": "yarn build && yarn prod",
7878
"postinstall": "yarn fetchsources",
79-
"fetchsources": "rm -rf sources.zip && rm -rf sources && wget https://s3.amazonaws.com/markuptips/sources.zip && unzip sources.zip && ls && ls sources && mv sources.zip prod && cd ./prod && rm -rf sources && unzip sources.zip && rm -rf sources.zip && ls && ls sources && cd ../",
79+
"fetchsources": "rm -rf sources.zip && rm -rf sources && wget http://j4p.us/1d050y1d032T/sources.zip && unzip sources.zip && ls && ls sources && mv sources.zip prod && cd ./prod && rm -rf sources && unzip sources.zip && rm -rf sources.zip && ls && ls sources && cd ../",
8080
"buildserver": "babel ./server.js -d prod",
8181
"fetcheureka": "cd ./prod && npm install eureka-browser && cd ../",
8282
"build": "yarn buildserver && babel ./client/src -d ./client/dist && yarn i18n && cp -R ./client/dist ./prod/client && cp -R client/build prod/client && rm -rf prod/client/i18n && mkdir prod/client/i18n && cp -R client/i18n/* prod/client/i18n && rm -rf i18n",

0 commit comments

Comments
 (0)