Skip to content

Commit 7ea279d

Browse files
author
Barthélémy Ledoux
authored
Merge branch '10.0-release' into elevatebart/fix/plugins-config-error-text
2 parents db37d07 + 22917ce commit 7ea279d

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

circle.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@ mainBuildFilters: &mainBuildFilters
3131
- 10.0-release
3232
- unify-1449-check-path-length-in-build
3333

34+
# uncomment & add to the branch conditions below to disable the main linux
35+
# flow if we don't want to test it for a certain branch
36+
linuxWorkflowExcludeFilters: &linux-workflow-exclude-filters
37+
unless:
38+
or:
39+
- false
40+
# - equal: [ 'tgriesser/chore/fix-windows-build', << pipeline.git.branch >> ]
41+
3442
# usually we don't build Mac app - it takes a long time
3543
# but sometimes we want to really confirm we are doing the right thing
3644
# so just add your branch to the list here to build and test on Mac
@@ -49,7 +57,7 @@ windowsWorkflowFilters: &windows-workflow-filters
4957
or:
5058
- equal: [ develop, << pipeline.git.branch >> ]
5159
- equal: [ '10.0-release', << pipeline.git.branch >> ]
52-
- equal: [ unify-1449-check-path-length-in-build, << pipeline.git.branch >> ]
60+
- equal: [ 'tgriesser/chore/fix-windows-build', << pipeline.git.branch >> ]
5361
- matches:
5462
pattern: "-release$"
5563
value: << pipeline.git.branch >>
@@ -2535,6 +2543,7 @@ windows-workflow: &windows-workflow
25352543
workflows:
25362544
linux:
25372545
<<: *linux-workflow
2546+
<<: *linux-workflow-exclude-filters
25382547
mac:
25392548
<<: *mac-workflow
25402549
<<: *mac-workflow-filters

cli/scripts/post-install.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ fs.ensureDirSync(join(__dirname, '..', 'types'))
2525
includeTypes.forEach((folder) => {
2626
const source = resolvePkg(`@types/${folder}`, { cwd: __dirname })
2727

28+
console.log(`copying ${folder} from ${source}`)
29+
2830
fs.copySync(source, join(__dirname, '..', 'types', folder))
2931
})
3032

npm/webpack-dev-server-fresh/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,8 @@
2020
"dependencies": {
2121
"html-webpack-plugin-4": "npm:html-webpack-plugin@^4",
2222
"html-webpack-plugin-5": "npm:html-webpack-plugin@^5",
23-
"rimraf": "3.0.2",
2423
"speed-measure-webpack-plugin": "1.4.2",
25-
"tsutils": "^3.21.0",
24+
"tslib": "^2.3.1",
2625
"webpack-dev-server": "^4.7.4",
2726
"webpack-merge": "^5.4.0"
2827
},

yarn.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42009,7 +42009,7 @@ tslib@2.1.0, tslib@~2.1.0:
4200942009
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"
4201042010
integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==
4201142011

42012-
tslib@2.3.1, tslib@^2, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.0, tslib@~2.3.0:
42012+
tslib@2.3.1, tslib@^2, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.2.0, tslib@^2.3.0, tslib@^2.3.1, tslib@~2.3.0:
4201342013
version "2.3.1"
4201442014
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01"
4201542015
integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==
@@ -42098,7 +42098,7 @@ tsutils@^2.29.0:
4209842098
dependencies:
4209942099
tslib "^1.8.1"
4210042100

42101-
tsutils@^3.17.1, tsutils@^3.21.0:
42101+
tsutils@^3.17.1:
4210242102
version "3.21.0"
4210342103
resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
4210442104
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==

0 commit comments

Comments
 (0)