This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: upgrade stack and bump to lodash4 (#193)
BREAKING CHANGE: replace Gruntfile.js by the common `@ovh-ux/component-rollup-config` configuration The `dist` folder architecture changed. Before: ```sh $ tree -L 1 dist/ dist/ ├── ovh-api-services.js └── ovh-api-services.min.js ``` After: ```sh $ tree -L 2 dist/ dist/ ├── cjs │ ├── index.js │ └── index.js.map └── esm └── index.js ```
- Loading branch information
1 parent
3ff8b7d
commit fc62865
Showing
1,081 changed files
with
3,158 additions
and
27,941 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module" | ||
}, | ||
"extends": "./node_modules/eslint-config-ovh/configs/es5-browser.js", | ||
"rules": { | ||
"no-use-before-define": "off", | ||
"no-restricted-properties": "off" | ||
}, | ||
"globals": { | ||
"Buffer": true, | ||
"require": true, | ||
"module": true, | ||
"__dirname": true, | ||
"inject": true, | ||
"angular": true | ||
"no-restricted-properties": "off", | ||
"quotes": "off" | ||
}, | ||
"env": { | ||
"jasmine": true | ||
"jasmine": true, | ||
"node": true | ||
} | ||
} |
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,2 @@ | ||
node_modules | ||
.tmp | ||
.idea | ||
npm-debug.log | ||
.work | ||
.DS_Store | ||
dist |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.