cronofy-elements 1.65.5 → 1.66.1

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.
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "cronofy-elements",
3
- "version": "1.65.5",
3
+ "version": "1.66.1",
4
4
  "description": "Fast track scheduling with Cronofy's embeddable UI Elements",
5
5
  "main": "dist/CronofyElements.js",
6
6
  "scripts": {
7
+ "lint": "eslint src",
7
8
  "test": "jest --maxWorkers=4 --workerIdleMemoryLimit=128M",
8
9
  "build": "webpack --mode=production",
9
10
  "build_analyse": "webpack --mode=production --analyze",
@@ -14,12 +15,12 @@
14
15
  "dev": "webpack --mode=development --watch",
15
16
  "dev_analyse": "webpack --mode=development --watch --analyze",
16
17
  "dev_compat": "webpack --config compat.config.js --mode=development --watch",
17
- "serve": "npm run build_server && node build/server.js",
18
+ "serve": "yarn build_server && node build/server.js",
18
19
  "copy_for_s3_upload": "node -e \"require('fs').copyFileSync('dist/CronofyElements.js', 'dist-s3/CronofyElements.v$npm_package_version.js')\"",
19
20
  "use:npmReadme": "mv 'README.md' 'git.README.md' && mv 'npm.README.md' 'README.md'",
20
21
  "use:gitReadme": "mv 'README.md' 'npm.README.md' && mv 'git.README.md' 'README.md'",
21
- "prepack": "npm run use:npmReadme",
22
- "postpack": "npm run use:gitReadme"
22
+ "prepack": "yarn use:npmReadme",
23
+ "postpack": "yarn use:gitReadme"
23
24
  },
24
25
  "files": [
25
26
  "/dist/**/*"