Skip to content

Commit f9ee7ee

Browse files
committed
fix typos + add \n in sub pkgs package.json
1 parent c90bfbf commit f9ee7ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Building plotly.js
22

3-
The easiest way to bundle plotly.js into your application is to use the one of the distributed plotly.js packages on npm. These distributed packages should just work with **any** build framework. That said, if you're looking to save a few bytes, read the section below corresponding to your building framework.
3+
The easiest way to bundle plotly.js into your application is to use one of the distributed plotly.js packages on npm. These distributed packages should just work with **any** build framework. That said, if you're looking to save a few bytes, read the section below corresponding to your building framework.
44

55
## Webpack
66

tasks/stats.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function getMainBundleInfo() {
129129
'',
130130
constants.partialBundlePaths.map(makeBundleHeaderInfo).join('\n'),
131131
'',
132-
'Starting in `v1.39.0`, each plotly.js partial bundle has a corresponding npm package with no dependency.'
132+
'Starting in `v1.39.0`, each plotly.js partial bundle has a corresponding npm package with no dependencies.'
133133
];
134134
}
135135

tasks/sync_packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ packagesSpecs.forEach(function(d) {
5151

5252
fs.writeFile(
5353
path.join(pkgPath, 'package.json'),
54-
JSON.stringify(cnt, null, 2),
54+
JSON.stringify(cnt, null, 2) + '\n',
5555
cb
5656
);
5757
}

0 commit comments

Comments
 (0)