remove gulp submodule
This commit is contained in:
parent
3a5dfdd115
commit
c4bb4c9c02
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -1,3 +0,0 @@
|
|||||||
[submodule "gulp"]
|
|
||||||
path = gulp
|
|
||||||
url = https://github.com/thebitmill/gulp.git
|
|
||||||
1
gulp
1
gulp
@ -1 +0,0 @@
|
|||||||
Subproject commit 1daad4b4629c3ddef1f60710a0f7f8a67af9d714
|
|
||||||
@ -1,51 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
const fs = require('fs');
|
|
||||||
const p = require('path');
|
|
||||||
|
|
||||||
// modules > native
|
|
||||||
module.exports = {
|
|
||||||
// babel: {
|
|
||||||
// src: 'client/**/*.{js,jsx}',
|
|
||||||
// dest: 'build',
|
|
||||||
// babelrc: false,
|
|
||||||
// presets: ['es2015-node6', 'es2016', 'es2017', 'stage-0'],
|
|
||||||
// plugins: [
|
|
||||||
// 'add-module-exports',
|
|
||||||
// ['transform-react-jsx'],
|
|
||||||
// ['transform-react-remove-prop-types'],
|
|
||||||
// ['module-resolver', {
|
|
||||||
// alias: {
|
|
||||||
// lowline: 'lodash',
|
|
||||||
// react: 'jsx-node',
|
|
||||||
// 'easy-tz': 'easy-tz/cjs',
|
|
||||||
// 'mini-qs': 'querystring',
|
|
||||||
// },
|
|
||||||
// }],
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
|
|
||||||
rollup: {
|
|
||||||
// plugins: {
|
|
||||||
// babel: {
|
|
||||||
// include: [
|
|
||||||
// 'node_modules/mini-qs/**',
|
|
||||||
// 'node_modules/easy-path/**',
|
|
||||||
// 'node_modules/comkit/**',
|
|
||||||
// 'client/**',
|
|
||||||
// ],
|
|
||||||
// babelrc: false,
|
|
||||||
// presets: ['es2015-rollup', 'es2016', 'es2017', 'stage-0'],
|
|
||||||
// plugins: [
|
|
||||||
// ['transform-react-jsx', { pragma: 'h' }],
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
entries: [
|
|
||||||
'index.js',
|
|
||||||
],
|
|
||||||
outputs: [
|
|
||||||
'app.js',
|
|
||||||
],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
@ -1 +0,0 @@
|
|||||||
gulp/gulpfile.js
|
|
||||||
57
package.json
57
package.json
@ -4,10 +4,6 @@
|
|||||||
"description": "",
|
"description": "",
|
||||||
"main": "server/server.js",
|
"main": "server/server.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"gulp": "gulp",
|
|
||||||
"gulp:production": "NODE_ENV=production gulp",
|
|
||||||
"gulp:development": "NODE_ENV=development gulp",
|
|
||||||
"gulp:staging": "NODE_ENV=staging gulp",
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"author": "Linus Miller <lohfu@lohfu.io> (https://lohfu.io/)",
|
"author": "Linus Miller <lohfu@lohfu.io> (https://lohfu.io/)",
|
||||||
@ -17,14 +13,14 @@
|
|||||||
"chalk": "^1.1.3",
|
"chalk": "^1.1.3",
|
||||||
"cookie-parser": "^1.4.3",
|
"cookie-parser": "^1.4.3",
|
||||||
"dollr": "^0.1.2",
|
"dollr": "^0.1.2",
|
||||||
"dragula": "github:lohfu/dragula",
|
"dragula": "^3.7.2",
|
||||||
"easy-tz": "^0.1.1",
|
"easy-tz": "^0.1.1",
|
||||||
"express": "^4.14.1",
|
"express": "^4.14.1",
|
||||||
"express-session": "^1.15.1",
|
"express-session": "^1.15.1",
|
||||||
"jsx-node": "^0.2.2",
|
"jsx-node": "^0.2.2",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"lowline": "^0.1.3",
|
"lowline": "^0.1.3",
|
||||||
"midwest": "github:thebitmill/midwest",
|
"midwest": "^0.4.2",
|
||||||
"midwest-service-errors": "^0.2.0",
|
"midwest-service-errors": "^0.2.0",
|
||||||
"morgan": "^1.8.1",
|
"morgan": "^1.8.1",
|
||||||
"pg": "^6.1.2",
|
"pg": "^6.1.2",
|
||||||
@ -40,58 +36,11 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"app-module-path": "^1.1.0",
|
"app-module-path": "^1.1.0",
|
||||||
"autoprefixer": "^6.7.2",
|
|
||||||
"babel-plugin-add-module-exports": "^0.2.1",
|
|
||||||
"babel-plugin-module-resolver": "^2.5.0",
|
|
||||||
"babel-plugin-transform-react-jsx": "^6.23.0",
|
|
||||||
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
|
|
||||||
"babel-preset-es2015": "^6.22.0",
|
|
||||||
"babel-preset-es2015-node6": "^0.4.0",
|
|
||||||
"babel-preset-es2015-rollup": "^3.0.0",
|
|
||||||
"babel-preset-es2016": "^6.22.0",
|
|
||||||
"babel-preset-es2017": "^6.22.0",
|
|
||||||
"babel-preset-stage-0": "^6.22.0",
|
|
||||||
"babel-preset-stage-1": "^6.22.0",
|
|
||||||
"babel-preset-stage-2": "^6.22.0",
|
|
||||||
"babel-preset-stage-3": "^6.22.0",
|
|
||||||
"browser-sync": "^2.18.8",
|
|
||||||
"chalk": "^1.1.3",
|
|
||||||
"csswring": "^5.1.1",
|
|
||||||
"eslint": "^3.15.0",
|
"eslint": "^3.15.0",
|
||||||
"eslint-config-airbnb": "^14.1.0",
|
"eslint-config-airbnb": "^14.1.0",
|
||||||
"eslint-config-airbnb-base": "^11.1.0",
|
"eslint-config-airbnb-base": "^11.1.0",
|
||||||
"eslint-plugin-import": "^2.2.0",
|
"eslint-plugin-import": "^2.2.0",
|
||||||
"eslint-plugin-jsx-a11y": "^4.0.0",
|
"eslint-plugin-jsx-a11y": "^4.0.0",
|
||||||
"eslint-plugin-react": "^6.9.0",
|
"eslint-plugin-react": "^6.9.0"
|
||||||
"gulp": "github:gulpjs/gulp#4.0",
|
|
||||||
"gulp-babel": "^6.1.2",
|
|
||||||
"gulp-less": "^3.3.0",
|
|
||||||
"gulp-postcss": "^6.3.0",
|
|
||||||
"gulp-rename": "^1.2.2",
|
|
||||||
"gulp-sourcemaps": "^2.4.1",
|
|
||||||
"gulp-svgmin": "^1.2.3",
|
|
||||||
"gulp-uglify": "^2.0.1",
|
|
||||||
"gulp-util": "^3.0.8",
|
|
||||||
"jsx-node": "^0.2.1",
|
|
||||||
"less": "^2.7.2",
|
|
||||||
"lodash": "^4.17.4",
|
|
||||||
"merge-stream": "^1.0.1",
|
|
||||||
"mkdirp": "^0.5.1",
|
|
||||||
"nodemon": "^1.11.0",
|
|
||||||
"postcss": "^5.2.12",
|
|
||||||
"pretty-hrtime": "^1.0.3",
|
|
||||||
"rimraf": "^2.5.4",
|
|
||||||
"rollup": "^0.41.4",
|
|
||||||
"rollup-plugin-babel": "^2.7.1",
|
|
||||||
"rollup-plugin-commonjs": "^7.0.0",
|
|
||||||
"rollup-plugin-node-resolve": "^2.0.0",
|
|
||||||
"rollup-plugin-replace": "^1.1.1",
|
|
||||||
"serialize-error": "^2.1.0",
|
|
||||||
"supertest": "^3.0.0",
|
|
||||||
"tap-spec": "^4.1.1",
|
|
||||||
"tape": "^4.6.3",
|
|
||||||
"through2": "^2.0.3",
|
|
||||||
"vinyl-buffer": "^1.0.0",
|
|
||||||
"vinyl-source-stream": "^1.1.0"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user