This repository was archived by the owner on Aug 7, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +37
-479
lines changed Expand file tree Collapse file tree 4 files changed +37
-479
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ insert_final_newline = true
19
19
20
20
[* .js ]
21
21
indent_style = space
22
- indent_size = 2
22
+ indent_size = 4
23
23
24
24
[* .less ]
25
25
indent_style = space
Original file line number Diff line number Diff line change 1
1
const formatter = require ( "eslint-friendly-formatter" ) ;
2
2
const webpack = require ( "webpack" ) ;
3
+ const path = require ( "path" ) ;
3
4
const LodashModuleReplacementPlugin = require ( "lodash-webpack-plugin" ) ;
4
5
5
6
const exclude = [ / n o d e _ m o d u l e s / , / d i s t / ] ;
@@ -18,6 +19,15 @@ module.exports = {
18
19
paths : true
19
20
} )
20
21
] ,
22
+
23
+ // To be removed when using yarn workspaces
24
+ resolve : {
25
+ alias : {
26
+ "@ovh-ui" : path . resolve ( __dirname , "../packages" ) ,
27
+ flatpickr : path . resolve ( __dirname , "../node_modules/flatpickr" )
28
+ } ,
29
+ mainFiles : [ "index" , "src/index" ]
30
+ } ,
21
31
module : {
22
32
rules : [
23
33
{
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ovh-ui-angular" ,
3
3
"description" : " A set of maintainable components for the OVH ecosystem (Angular)." ,
4
- "private" : true ,
5
4
"license" : " BSD-3-Clause" ,
6
5
"author" : " OVH SAS" ,
7
6
"version" : " 2.20.2" ,
39
38
"angular" : " >=1.6.x" ,
40
39
"angular-aria" : " >=1.6.x" ,
41
40
"angular-sanitize" : " >=1.6.x" ,
41
+ "clipboard" : " ^2.0.1" ,
42
+ "escape-string-regexp" : " ^1.0.5" ,
43
+ "flatpickr" : " ^4.5.2" ,
44
+ "popper.js" : " ^1.14.4" ,
42
45
"ovh-ui-kit" : " ^2.20.0"
43
46
},
44
47
"devDependencies" : {
100
103
"peerDependencies" : {
101
104
"ovh-ui-kit" : " *"
102
105
},
103
- "workspaces" : [
104
- " packages/*"
105
- ],
106
106
"engines" : {
107
107
"node" : " >= 6.9.0" ,
108
108
"npm" : " >= 3.10.0" ,
You can’t perform that action at this time.
0 commit comments