Skip to content

Commit 17cd15a

Browse files
authored
Upgrade to webpack 3 and other deps (#60)
* Upgrade to webpack 3 * Upgrade babel, webpack-node-externals * Upgrade friendly-errors-webpack-plugin * Upgrade source-map-support * v0.4.0-rc1
1 parent fa5aa3f commit 17cd15a

File tree

10 files changed

+662
-87
lines changed

10 files changed

+662
-87
lines changed

examples/basic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-basic",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"dev": "backpack dev",
@@ -9,7 +9,7 @@
99
},
1010
"license": "MIT",
1111
"dependencies": {
12-
"backpack-core": "^0.3.0",
12+
"backpack-core": "^0.4.0-rc1",
1313
"express": "^4.14.0"
1414
}
1515
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-with-custom-babel-config",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"dev": "backpack dev",
@@ -10,7 +10,7 @@
1010
"license": "MIT",
1111
"dependencies": {
1212
"babel-preset-stage-0": "^6.16.0",
13-
"backpack-core": "^0.3.0",
13+
"backpack-core": "^0.4.0-rc1",
1414
"express": "^4.14.0"
1515
}
1616
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-with-custom-webpack-config",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"dev": "backpack dev",
@@ -9,7 +9,7 @@
99
},
1010
"license": "MIT",
1111
"dependencies": {
12-
"backpack-core": "^0.3.0",
12+
"backpack-core": "^0.4.0-rc1",
1313
"express": "^4.14.0"
1414
}
1515
}

examples/with-flowtype/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-with-flowtype",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"flow": "flow",
@@ -11,7 +11,7 @@
1111
"license": "MIT",
1212
"dependencies": {
1313
"babel-plugin-transform-flow-strip-types": "^6.21.0",
14-
"backpack-core": "^0.3.0",
14+
"backpack-core": "^0.4.0-rc1",
1515
"express": "^4.14.0",
1616
"flow-bin": "^0.37.4"
1717
}

examples/with-jest/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-with-jest",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"test": "NODE_ENV=test jest",
@@ -10,7 +10,7 @@
1010
},
1111
"license": "MIT",
1212
"dependencies": {
13-
"backpack-core": "^0.3.0",
13+
"backpack-core": "^0.4.0-rc1",
1414
"express": "^4.14.0"
1515
},
1616
"devDependencies": {

examples/with-typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-examples-with-typescript",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"scripts": {
55
"start": "node ./build/main.js",
66
"dev": "backpack dev",
@@ -11,7 +11,7 @@
1111
"express": "^4.14.0",
1212
"@types/express": "^4.0.34",
1313
"awesome-typescript-loader": "^3.0.0-beta.18",
14-
"backpack-core": "^0.3.0",
14+
"backpack-core": "^0.4.0-rc1",
1515
"typescript": "^2.1.5"
1616
}
1717
}

lerna.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"examples/*",
55
"packages/*"
66
],
7-
"version": "0.3.0",
7+
"version": "0.4.0-rc1",
88
"npmClient": "yarn"
9-
}
9+
}

packages/babel-preset-backpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-preset-backpack",
3-
"version": "0.0.9",
3+
"version": "0.4.0-rc1",
44
"description": "Babel preset for Backpack projects",
55
"repository": "palmerhq/backpack",
66
"author": "jaredpalmer",
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backpack-core",
3-
"version": "0.3.0",
3+
"version": "0.4.0-rc1",
44
"description": "Backpack is a minimalistic build system for Node.js",
55
"repository": "palmerhq/backpack",
66
"author": "@jaredpalmer",
@@ -12,15 +12,15 @@
1212
"backpack": "./bin/backpack"
1313
},
1414
"dependencies": {
15-
"babel-core": "^6.22.0",
16-
"babel-loader": "^6.2.10",
17-
"babel-preset-backpack": "^0.0.9",
15+
"babel-core": "^6.25.0",
16+
"babel-loader": "^7.1.0",
17+
"babel-preset-backpack": "^0.4.0-rc1",
1818
"cross-spawn": "^5.0.1",
19-
"friendly-errors-webpack-plugin": "^1.1.2",
19+
"friendly-errors-webpack-plugin": "^1.6.1",
2020
"nodemon": "^1.11.0",
2121
"ramda": "^0.23.0",
22-
"source-map-support": "^0.4.11",
23-
"webpack": "2.2.0-rc.3",
24-
"webpack-node-externals": "^1.5.4"
22+
"source-map-support": "^0.4.15",
23+
"webpack": "^3.0.0",
24+
"webpack-node-externals": "^1.6.0"
2525
}
2626
}

0 commit comments

Comments
 (0)