Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
build: upgrade stack and bump to lodash4 (#193)
Browse files Browse the repository at this point in the history
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
frenautvh authored and antleblanc committed Jul 26, 2019
1 parent 3ff8b7d commit fc62865
Show file tree
Hide file tree
Showing 1,081 changed files with 3,158 additions and 27,941 deletions.
19 changes: 9 additions & 10 deletions .eslintrc.json
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
}
}
6 changes: 1 addition & 5 deletions .gitignore
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
136 changes: 0 additions & 136 deletions Gruntfile.js

This file was deleted.

74 changes: 0 additions & 74 deletions Makefile

This file was deleted.

Loading

0 comments on commit fc62865

Please sign in to comment.