rollup 0.67.3 → 0.68.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "0.67.3",
3
+ "version": "0.68.2",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/rollup.es.js",
@@ -16,14 +16,15 @@
16
16
  "ci:coverage": "npm run test:coverage",
17
17
  "ci:lint": "npm run lint:nofix && npm run security",
18
18
  "ci:test": "npm run test && npm run build:bootstrap && npm run test:only",
19
- "lint": "tslint --project . --fix && eslint --fix test/test.js test/*/index.js test/utils.js test/**/_config.js",
20
- "lint:nofix": "tslint --project . && eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
19
+ "lint": "npm run lint:ts -- --fix && npm run lint:js -- --fix && npm run lint:markdown",
20
+ "lint:nofix": "npm run lint:ts && npm run lint:js && npm run lint:markdown",
21
+ "lint:ts": "tslint --project .",
22
+ "lint:js": "eslint test/test.js test/*/index.js test/utils.js test/**/_config.js",
23
+ "lint:markdown": "markdownlint --config markdownlint.json docs/**/*.md",
21
24
  "perf": "npm run build:test && node --expose-gc scripts/perf.js",
22
25
  "perf:debug": "node --inspect-brk scripts/perf-debug.js",
23
26
  "perf:init": "node scripts/perf-init.js",
24
- "postcommit": "git reset",
25
27
  "posttest:coverage": "remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.json -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped.lcov -t lcovonly -b dist && remap-istanbul -i coverage/coverage-final.json -o coverage/coverage-remapped -t html -b dist",
26
- "precommit": "lint-staged",
27
28
  "prepare": "npm run build",
28
29
  "prepublishOnly": "npm run lint:nofix && npm run security && npm run build && npm run build:bootstrap && npm run test:only && npm run test:typescript && npm run test:leak",
29
30
  "pretest": "npm run build:test",
@@ -69,35 +70,36 @@
69
70
  "acorn-dynamic-import": "^3.0.0",
70
71
  "acorn-import-meta": "^0.2.1",
71
72
  "ansi-escapes": "^3.1.0",
72
- "buble": "^0.19.3",
73
+ "buble": "^0.19.6",
73
74
  "chokidar": "^2.0.4",
74
75
  "console-group": "^0.3.1",
75
76
  "date-time": "^2.1.0",
76
- "eslint": "^5.6.0",
77
+ "eslint": "^5.9.0",
77
78
  "eslint-plugin-import": "^2.14.0",
78
79
  "execa": "^1.0.0",
79
80
  "fixturify": "^0.3.4",
80
- "hash.js": "^1.1.5",
81
- "husky": "^0.14.3",
82
- "immutable": "^3.8.2",
81
+ "hash.js": "^1.1.7",
82
+ "husky": "^1.2.0",
83
+ "immutable": "^4.0.0-rc.12",
83
84
  "is-reference": "^1.1.0",
84
85
  "istanbul": "^0.4.3",
85
- "lint-staged": "^7.2.2",
86
+ "lint-staged": "^8.1.0",
86
87
  "locate-character": "^2.0.5",
87
88
  "magic-string": "^0.25.1",
89
+ "markdownlint-cli": "^0.13.0",
88
90
  "minimist": "^1.2.0",
89
91
  "mocha": "^5.2.0",
90
- "prettier": "^1.14.2",
92
+ "prettier": "^1.15.3",
91
93
  "pretty-bytes": "^5.1.0",
92
94
  "pretty-ms": "^4.0.0",
93
95
  "remap-istanbul": "^0.12.0",
94
96
  "require-relative": "^0.8.7",
95
- "rollup": "^0.66.2",
96
- "rollup-plugin-buble": "^0.19.2",
97
- "rollup-plugin-commonjs": "^9.1.8",
97
+ "rollup": "^0.67.4",
98
+ "rollup-plugin-buble": "^0.19.4",
99
+ "rollup-plugin-commonjs": "^9.2.0",
98
100
  "rollup-plugin-json": "^3.1.0",
99
101
  "rollup-plugin-node-resolve": "^3.4.0",
100
- "rollup-plugin-replace": "^2.0.0",
102
+ "rollup-plugin-replace": "^2.1.0",
101
103
  "rollup-plugin-string": "^2.0.2",
102
104
  "rollup-plugin-terser": "^2.0.2",
103
105
  "rollup-plugin-typescript": "^1.0.0",
@@ -107,34 +109,17 @@
107
109
  "signal-exit": "^3.0.2",
108
110
  "source-map": "^0.6.1",
109
111
  "source-map-support": "^0.5.9",
110
- "sourcemap-codec": "^1.4.1",
111
- "terser": "^3.8.2",
112
+ "sourcemap-codec": "^1.4.4",
113
+ "terser": "^3.11.0",
112
114
  "tslib": "^1.9.3",
113
115
  "tslint": "^5.11.0",
114
116
  "turbocolor": "^2.6.1",
115
- "typescript": "^3.1.1",
116
- "url-parse": "^1.4.3"
117
+ "typescript": "^3.2.2",
118
+ "url-parse": "^1.4.4"
117
119
  },
118
120
  "files": [
119
121
  "dist/*.js",
120
122
  "dist/*.d.ts",
121
123
  "bin/rollup"
122
- ],
123
- "lint-staged": {
124
- "{src,bin,browser,typings}/**/*.ts": [
125
- "tslint --project . --fix",
126
- "prettier --write",
127
- "git add"
128
- ],
129
- "test/**/*.ts": [
130
- "tslint --project test/typescript --fix",
131
- "prettier --write",
132
- "git add"
133
- ],
134
- "{test/test,test/*/index,test/utils,test/**/_config}.js": [
135
- "eslint --fix",
136
- "prettier --write",
137
- "git add"
138
- ]
139
- }
124
+ ]
140
125
  }