Skip to content

Commit 09b5158

Browse files
jleveuglejleveugle
authored andcommitted
feat: add new packages
Add the following packages: * component-rollup-config * webpack-config * webpack-dev-server All of theses 3 packages has been migrated to TypeScript, to reinforce codebase and deliver better dist. Installation of theses packages forces to clean some other dependencies, like "less" dependencies. In fact, less@^2.0.0 is completely removed, and we will use less@^3.9.0 instead.
1 parent 6395b29 commit 09b5158

File tree

56 files changed

+2862
-335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2862
-335
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
packages: [
2323
path.resolve(__dirname, 'packages/manager/apps'),
2424
path.resolve(__dirname, 'packages/manager/modules'),
25+
path.resolve(__dirname, 'packages/manager/tools'),
2526
]
2627
}
2728
}

packages/components/ng-uirouter-breadcrumb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/ng-uirouter-breadcrumb' --include-filtered-dependencies -- yarn run dev:watch"
3636
},
3737
"devDependencies": {
38-
"@ovh-ux/component-rollup-config": "^5.0.2"
38+
"@ovh-ux/component-rollup-config": "^5.1.0"
3939
},
4040
"peerDependencies": {
4141
"@uirouter/angularjs": "^1.0.22",

packages/components/ng-uirouter-layout/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"lodash": "^4.17.11"
3939
},
4040
"devDependencies": {
41-
"@ovh-ux/component-rollup-config": "^5.0.2"
41+
"@ovh-ux/component-rollup-config": "^5.1.0"
4242
},
4343
"peerDependencies": {
4444
"@uirouter/angularjs": "^1.0.22",

packages/components/ng-uirouter-line-progress/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"nprogress": "^0.2.0"
4040
},
4141
"devDependencies": {
42-
"@ovh-ux/component-rollup-config": "^5.0.2"
42+
"@ovh-ux/component-rollup-config": "^5.1.0"
4343
},
4444
"peerDependencies": {
4545
"@uirouter/angularjs": "^1.0.22",

packages/manager/apps/pci/LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ modification, are permitted provided that the following conditions are met:
1313
this list of conditions and the following disclaimer in the documentation
1414
and/or other materials provided with the distribution.
1515

16-
* Neither the name of the copyright holder nor the names of its
16+
* Neither the name of the copyright holders nor the names of its
1717
contributors may be used to endorse or promote products derived from
1818
this software without specific prior written permission.
1919

2020
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2121
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2222
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
2424
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2525
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2626
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER

packages/manager/modules/cloud-styles/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-cloud-styles' --include-filtered-dependencies -- yarn run dev:watch"
2525
},
2626
"devDependencies": {
27-
"@ovh-ux/component-rollup-config": "^5.0.2",
27+
"@ovh-ux/component-rollup-config": "^5.1.0",
2828
"bootstrap": "~3.3.7",
2929
"font-awesome": "^4.0.0",
3030
"ovh-common-style": "^3.2.2",

packages/manager/modules/cloud-universe-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"ovh-ui-kit": "^2.33.3"
4343
},
4444
"devDependencies": {
45-
"@ovh-ux/component-rollup-config": "^5.0.2"
45+
"@ovh-ux/component-rollup-config": "^5.1.0"
4646
},
4747
"peerDependencies": {
4848
"@ovh-ux/ng-ovh-user-pref": "^1.0.0",

packages/manager/modules/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-config' --include-filtered-dependencies -- yarn run dev:watch"
2828
},
2929
"devDependencies": {
30-
"@ovh-ux/component-rollup-config": "^5.0.2"
30+
"@ovh-ux/component-rollup-config": "^5.1.0"
3131
}
3232
}

packages/manager/modules/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"lodash": "^4.17.11"
3232
},
3333
"devDependencies": {
34-
"@ovh-ux/component-rollup-config": "5.0.2"
34+
"@ovh-ux/component-rollup-config": "^5.1.0"
3535
},
3636
"peerDependencies": {
3737
"@ovh-ux/manager-config": "^0.2.0",

packages/manager/modules/freefax/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"lodash": "^4.17.11"
3232
},
3333
"devDependencies": {
34-
"@ovh-ux/component-rollup-config": "5.0.2"
34+
"@ovh-ux/component-rollup-config": "^5.1.0"
3535
},
3636
"peerDependencies": {
3737
"@ovh-ux/manager-core": "^6.0.1",

0 commit comments

Comments
 (0)