소스 검색

update docs with new scripts

Leon Bubova 3 년 전
부모
커밋
4e2773f7b9
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      CONTRIBUTING.md

+ 5 - 3
CONTRIBUTING.md

@@ -25,10 +25,12 @@ npm install
 2. Run the following command to create `bundled-content-script.js` which is used in `manifest.json`
 
 ```
-npm run bundle
-```
+npm start // to create the build file(s) and start a file watcher that hot-reloads on save
+
+// or
 
-This will also start a watcher that re-bundles automatically once you save a file inside the source.
+npm run build // to create the build file(s) once
+```
 
 Congratulations, You are now ready to develop!