-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #987 from raxjs/release-next
release: v3.8.14
- Loading branch information
Showing
18 changed files
with
127 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "build-plugin-rax-app", | ||
"version": "7.0.7", | ||
"version": "7.0.8", | ||
"description": "The basic webpack configuration for rax project", | ||
"author": "Rax Team", | ||
"main": "lib/index.js", | ||
|
@@ -18,9 +18,9 @@ | |
], | ||
"license": "MIT", | ||
"dependencies": { | ||
"rax-webpack-config": "^3.0.2", | ||
"rax-webpack-config": "^3.0.4", | ||
"rax-babel-config": "^2.0.0", | ||
"rax-jest-config": "^1.0.0", | ||
"rax-jest-config": "^1.1.0", | ||
"rax-platform-loader": "^1.1.1", | ||
"@builder/user-config": "^2.0.0", | ||
"@builder/app-helpers": "^2.1.0", | ||
|
@@ -52,4 +52,4 @@ | |
"url": "[email protected]:raxjs/rax-app.git" | ||
}, | ||
"gitHead": "07ac7bb07162aac8c90778dd1de4a2060f8df498" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
// appConfig keys need transform to manifest | ||
const manifestRetainKeys = [ | ||
'name', | ||
'startUrl', | ||
'shortName', | ||
'lang', | ||
'dir', | ||
'description', | ||
'backgroundColor', | ||
'display', | ||
'icons', | ||
'appWorker', | ||
'window', | ||
'pageHeader', | ||
'tabHeader', | ||
'tabBar', | ||
'pages', | ||
'dataPrefetch', | ||
'spm', | ||
'metas', | ||
'links', | ||
'scripts', | ||
'offlineResources', | ||
'packageResources', | ||
'manifestPrefetchExpires', | ||
'manifestPrefetchMaxAge', | ||
'maxAge', | ||
'expires', | ||
'queryParamsPassKeys', | ||
'queryParamsPassIgnoreKeys', | ||
'splashViewTimeout', | ||
'splashViewAutoClose', | ||
'splashViewHtml', | ||
'splashViewUrl', | ||
'swiperThreshold', | ||
'requestHeaders', | ||
'enablePoplayer', | ||
'disableCapture', | ||
'enablePullRefresh', | ||
'pullRefreshBackgroundColor', | ||
'pullRefreshColorScheme', | ||
'pullRefresh', | ||
'cacheQueryParams', | ||
]; | ||
|
||
// do not decamelize list | ||
const manifestCamelizeKeys = [ | ||
'appKey', | ||
'dataType', | ||
'valueType', | ||
'isSec', | ||
'LoginRequest', | ||
'sessionOption', | ||
'AntiCreep', | ||
'AntiFlood', | ||
'needLogin', | ||
]; | ||
|
||
module.exports = { | ||
manifestRetainKeys, | ||
manifestCamelizeKeys, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## CHANGELOG | ||
|
||
### v1.1.0 | ||
|
||
- chore: use `rax-babel-config` instead of `build-scripts-config` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
const babelJest = require('babel-jest'); | ||
const { getBabelConfig } = require('build-scripts-config'); | ||
const getBabelConfig = require('rax-babel-config'); | ||
|
||
const jestBabelConfig = getBabelConfig(); | ||
module.exports = babelJest.createTransformer(jestBabelConfig); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## v3.0.4 | ||
|
||
- Chore: revert 3.0.3 changed file | ||
|
||
## v3.0.3 | ||
|
||
- Fix: css modules `:global` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters