bloom-player 2.0.121 → 2.0.122

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +6 -5
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "// The major and minor version numbers shown here are used by the TeamCity build, so they are meaningful.": "",
6
6
  "// Local builds will always get this exact version number, but that should be okay.": "",
7
7
  "// There's no need to update the patch value before committing and merging: the TeamCity process ensures a new patch number for each merge.": "",
8
- "version": "2.0.121",
8
+ "version": "2.0.122",
9
9
  "description": "A library for displaying Bloom books in iframes or WebViews",
10
10
  "main": "bloomPlayer.min.js",
11
11
  "author": "SIL International",
@@ -21,16 +21,17 @@
21
21
  "url": "https://github.com/BloomBooks/bloom-player.git"
22
22
  },
23
23
  "scripts": {
24
- "// start will build, watch, start a server, and open a chrome browser with CORS disabled": "",
25
- "// you can edit index-for-developing.html to point to different books": "",
24
+ "// COMMENTS: make the action a space rather than empty string so `yarn run` can list the scripts": " ",
25
+ "// start will build, watch, start a server, and open a chrome browser with CORS disabled": " ",
26
+ "// you can edit index-for-developing.html to point to different books": " ",
26
27
  "start": "concurrently npm:start-webpack-serve npm:chrome",
27
28
  "start-webpack-serve": "yarn webpack-dev-server",
28
29
  "storybook": "concurrently npm:storybook-inner npm:chrome-on-storybook-port",
29
30
  "storybook-inner": "start-storybook --static-dir ./,./src/activities,./src/activities/legacyQuizHandling -p 9009 --ci",
30
- "// if you are testing with a book hosted online, you will have to load chrome with these args (because of CORS restrictions)": "",
31
+ "// if you are testing with a book hosted online, you will have to load chrome with these args (because of CORS restrictions)": " ",
31
32
  "chrome": "chrome http://localhost:8080/ --disable-web-security --disable-gpu --user-data-dir=%temp%/chromeTemp",
32
33
  "chrome-on-storybook-port": "chrome http://localhost:9009/ --disable-web-security --disable-gpu --user-data-dir=%temp%/chromeTemp",
33
- "// note: shx cp is the same as unix cp, but cross platform. So a bit different semantics than Windows copy": "",
34
+ "// note: shx cp is the same as unix cp, but cross platform. So a bit different semantics than Windows copy": " ",
34
35
  "build": "shx rm -rf dist/ && webpack --config webpack-config-prod.js",
35
36
  "build-dev": "shx rm -rf dist/ && webpack --config webpack.config.js",
36
37
  "tslint": "tslint --project tsconfig.json",