Nettoyage exercices
This commit is contained in:
@ -1 +1,2 @@
|
||||
node_modules
|
||||
dist
|
||||
|
6
javascript/base/exercices/pipeline/grunt/README.md
Normal file
6
javascript/base/exercices/pipeline/grunt/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
# Grunt task
|
||||
|
||||
```
|
||||
npm install
|
||||
./node_modules/.bin/grunt concat
|
||||
```
|
@ -46,7 +46,7 @@
|
||||
"shasum": "7f3e7a97b82392c653bf06589bd85190e93c3683",
|
||||
"tarball": "http://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz"
|
||||
},
|
||||
"_from": "findup-sync@~0.1.2",
|
||||
"_from": "findup-sync@~0.1.0",
|
||||
"_npmVersion": "1.4.4",
|
||||
"_npmUser": {
|
||||
"name": "cowboy",
|
||||
|
2
javascript/base/exercices/pipeline/grunt/node_modules/grunt-cli/package.json
generated
vendored
2
javascript/base/exercices/pipeline/grunt/node_modules/grunt-cli/package.json
generated
vendored
@ -61,7 +61,7 @@
|
||||
"shasum": "e9ebc4047631f5012d922770c39378133cad10f4",
|
||||
"tarball": "http://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.13.tgz"
|
||||
},
|
||||
"_from": "grunt-cli@",
|
||||
"_from": "grunt-cli@^0.1.13",
|
||||
"_npmVersion": "1.3.24",
|
||||
"_npmUser": {
|
||||
"name": "tkellen",
|
||||
|
@ -57,7 +57,7 @@
|
||||
"homepage": "https://github.com/sindresorhus/ansi-regex",
|
||||
"_id": "ansi-regex@0.2.1",
|
||||
"_shasum": "0d8e946967a3d8143f93e24e298525fc1b2235f9",
|
||||
"_from": "ansi-regex@^0.2.0",
|
||||
"_from": "ansi-regex@^0.2.1",
|
||||
"_npmVersion": "1.4.9",
|
||||
"_npmUser": {
|
||||
"name": "sindresorhus",
|
||||
|
@ -113,7 +113,7 @@
|
||||
"homepage": "https://github.com/gruntjs/grunt-contrib-concat",
|
||||
"_id": "grunt-contrib-concat@0.5.1",
|
||||
"_shasum": "953c6efdfdfd2c107ab9c85077f2d4b24d31cd49",
|
||||
"_from": "grunt-contrib-concat@",
|
||||
"_from": "grunt-contrib-concat@^0.5.1",
|
||||
"_npmVersion": "1.4.28",
|
||||
"_npmUser": {
|
||||
"name": "sindresorhus",
|
||||
@ -150,5 +150,6 @@
|
||||
"tarball": "http://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz"
|
||||
},
|
||||
"directories": {},
|
||||
"_resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz"
|
||||
"_resolved": "https://registry.npmjs.org/grunt-contrib-concat/-/grunt-contrib-concat-0.5.1.tgz",
|
||||
"readme": "ERROR: No README data found!"
|
||||
}
|
||||
|
@ -53,5 +53,6 @@
|
||||
"_from": "async@~0.1.22",
|
||||
"_resolved": "https://registry.npmjs.org/async/-/async-0.1.22.tgz",
|
||||
"readme": "ERROR: No README data found!",
|
||||
"homepage": "https://github.com/caolan/async"
|
||||
"homepage": "https://github.com/caolan/async",
|
||||
"scripts": {}
|
||||
}
|
||||
|
@ -41,6 +41,5 @@
|
||||
"url": "https://github.com/isaacs/inherits/issues"
|
||||
},
|
||||
"readme": "ERROR: No README data found!",
|
||||
"homepage": "https://github.com/isaacs/inherits",
|
||||
"scripts": {}
|
||||
"homepage": "https://github.com/isaacs/inherits"
|
||||
}
|
||||
|
@ -93,6 +93,5 @@
|
||||
],
|
||||
"_shasum": "71c08bf6b428b1133f37e78fa3a21c82f7329b0d",
|
||||
"_resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz",
|
||||
"readme": "ERROR: No README data found!",
|
||||
"scripts": {}
|
||||
"readme": "ERROR: No README data found!"
|
||||
}
|
||||
|
2
javascript/base/exercices/pipeline/grunt/node_modules/grunt/package.json
generated
vendored
2
javascript/base/exercices/pipeline/grunt/node_modules/grunt/package.json
generated
vendored
@ -82,7 +82,7 @@
|
||||
"shasum": "56937cd5194324adff6d207631832a9d6ba4e7f0",
|
||||
"tarball": "http://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz"
|
||||
},
|
||||
"_from": "grunt@",
|
||||
"_from": "grunt@^0.4.5",
|
||||
"_npmVersion": "1.4.4",
|
||||
"_npmUser": {
|
||||
"name": "cowboy",
|
||||
|
17
javascript/base/exercices/pipeline/grunt/package.json
Normal file
17
javascript/base/exercices/pipeline/grunt/package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "grunt",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "Gruntfile.js",
|
||||
"dependencies": {
|
||||
"grunt": "^0.4.5",
|
||||
"grunt-cli": "^0.1.13",
|
||||
"grunt-contrib-concat": "^0.5.1"
|
||||
},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "GPL"
|
||||
}
|
Reference in New Issue
Block a user