Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Erasmus <jerasmus@gitlab.com>2019-10-15 01:13:40 +0300
committerEvan Read <eread@gitlab.com>2019-10-15 01:13:40 +0300
commit21cc1fef11349417ed515557748369cfb235fc81 (patch)
tree80d2aa5f80f77da64871987030f47e3c14492b66 /package.json
parent179a601f70c3ca693911895814b271130d68df4a (diff)
Add support for modern JS
Added rollup to the project
Diffstat (limited to 'package.json')
-rw-r--r--package.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 000000000..14cf76f25
--- /dev/null
+++ b/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "gitlab-docs",
+ "version": "1.0.0",
+ "main": "public/index.js",
+ "scripts": {
+ "bundle": "rollup --config rollup.config.js"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.6.0",
+ "@babel/preset-env": "^7.6.0",
+ "glob": "^7.1.4",
+ "rollup": "^1.20.3",
+ "rollup-plugin-babel": "^4.3.3",
+ "rollup-plugin-commonjs": "^10.1.0"
+ }
+}