Skip to content

Commit 9d9f6ea

Browse files
committed
linting + cleanup
1 parent e0ea74a commit 9d9f6ea

File tree

13 files changed

+609
-703
lines changed

13 files changed

+609
-703
lines changed

packages/synthesis-compiler/.npm/package/npm-shrinkwrap.json

Lines changed: 284 additions & 346 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
2-
babel-compiler@6.8.4
3-
2+
babel-compiler@6.13.0
3+
44
55
66
77
88
9+
910
1011
1112
@@ -14,27 +15,27 @@ [email protected]
1415
1516
1617
17-
ecmascript@0.4.7
18-
ecmascript-runtime@0.2.12
18+
ecmascript@0.5.9
19+
ecmascript-runtime@0.3.15
1920
2021
2122
2223
2324
2425
25-
local-test:mwc:[email protected].39
26+
local-test:mwc:[email protected].40
2627
27-
meteor@1.1.16
28+
meteor@1.6.0
2829
29-
modules@0.6.5
30-
modules-runtime@0.6.5
30+
modules@0.7.7
31+
modules-runtime@0.7.7
3132
3233
33-
34+
3435
3536
3637
37-
promise@0.7.3
38+
promise@0.8.8
3839
3940
4041
@@ -44,6 +45,6 @@ [email protected]
4445
4546
4647
47-
48+
4849
4950
Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
11
Package.describe({
22
name: 'mwc:synthesis-compiler',
3-
version: '1.0.39',
3+
version: '1.0.40',
44
summary: 'Synthesis is meteor + polymer',
55
git: 'https://github.com/meteorwebcomponents/synthesis',
6-
documentation: 'README.md'
6+
documentation: 'README.md',
77
});
88

9-
Package.onUse(function(api) {
9+
Package.onUse((api) => {
1010
api.versionsFrom('1.3');
1111
api.use('ecmascript');
12-
api.use('babel-compiler')
13-
api.mainModule('synthesis-compiler.js','server');
12+
api.use('babel-compiler');
13+
api.use('[email protected]');
14+
api.mainModule('synthesis-compiler.js', 'server');
1415
});
1516

16-
Package.onTest(function(api) {
17+
Package.onTest((api) => {
1718
api.use('ecmascript');
1819
api.use('tinytest');
1920
api.use('mwc:synthesis-compiler');
2021
api.mainModule('synthesis-compiler-tests.js');
2122
});
2223

2324
Npm.depends({
24-
'lodash':'4.11.1',
25-
'polyclean':'1.3.1',
26-
'parse5': '2.1.5'
27-
})
25+
lodash: '4.17.0',
26+
polyclean: '1.3.1',
27+
parse5: '2.2.3',
28+
});
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
// Import Tinytest from the tinytest Meteor package.
2-
import { Tinytest } from "meteor/tinytest";
2+
import { Tinytest } from 'meteor/tinytest';
33

44
// Import and rename a variable exported by synthesis-compiler.js.
5-
import { name as packageName } from "meteor/synthesis-compiler";
5+
import { name as packageName } from 'meteor/synthesis-compiler';
66

77
// Write your tests here!
88
// Here is an example.
9-
Tinytest.add('synthesis-compiler - example', function (test) {
10-
test.equal(packageName, "synthesis-compiler");
9+
Tinytest.add('synthesis-compiler - example', (test) => {
10+
// Tests
11+
test.equal(packageName, 'synthesis-compiler');
1112
});

0 commit comments

Comments
 (0)