diff --git a/.circleci/config.yml b/.circleci/config.yml index 523243cb2..7ebf21f7b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,5 +10,5 @@ jobs: - checkout - run: npm install - run: npm run lint - - run: npm run build:dev + - run: npm run build - run: npm test diff --git a/dist/quill.html b/dist/quill.html new file mode 100644 index 000000000..16752b753 --- /dev/null +++ b/dist/quill.html @@ -0,0 +1,160 @@ + + +
+ +
+
+
+
+
+
+
diff --git a/package.json b/package.json
index f23914b4f..8000cf8fc 100644
--- a/package.json
+++ b/package.json
@@ -5,8 +5,8 @@
"main": "./src/yorkie.ts",
"scripts": {
"build:proto": "protoc --js_out=import_style=commonjs:. --grpc-web_out=import_style=commonjs+dts,mode=grpcwebtext:. ./src/api/yorkie.proto",
- "build:dev": "webpack --config webpack.dev.config.js",
- "start:dev": "webpack-dev-server --watch --config webpack.dev.config.js",
+ "build": "webpack --config webpack.dev.config.js",
+ "start": "webpack-dev-server --watch --config webpack.dev.config.js",
"test": "karma start karma.conf.js --single-run",
"test:watch": "karma start karma.conf.js",
"lint": "eslint . --fix --ext .ts"