Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 5bcf288

Browse files
author
Kent C. Dodds
committed
4.0.6
1 parent 53076cd commit 5bcf288

6 files changed

+38
-33
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 4.0.6
2+
3+
- Fixing issue with the new api-check API.
4+
15
# 4.0.5
26

37
- Fixing bug with multiCheckbox where no initial value would cause an error.

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly-templates-bootstrap",
3-
"version": "4.0.5",
3+
"version": "4.0.6",
44
"authors": [
55
"Astrism <[email protected]>"
66
],
@@ -29,8 +29,8 @@
2929
"dependencies": {
3030
"angular": ">=1.2.x",
3131
"angular-formly": ">=4.0.5",
32-
"api-check": "~6.0.10",
33-
"bootstrap": "~3.2.0"
32+
"api-check": ">=6.0.10",
33+
"bootstrap": ">=3.2.0"
3434
},
3535
"devDependencies": {
3636
"chai": "~1.9.1",

dist/angular-formly-templates-bootstrap.js

Lines changed: 20 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-formly-templates-bootstrap.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-formly-templates-bootstrap.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly-templates-bootstrap",
3-
"version": "4.0.5",
3+
"version": "4.0.6",
44
"author": "Astrism <[email protected]>",
55
"contributors": [
66
"Astrism <[email protected]>",
@@ -19,20 +19,20 @@
1919
}
2020
],
2121
"scripts": {
22-
"build:dist": "node node_modules/webpack/bin/webpack.js",
23-
"build:minify": "node node_modules/webpack/bin/webpack.js --config webpack.config.minify.js",
22+
"build:dist": "webpack",
23+
"build:minify": "webpack --config webpack.config.minify.js",
2424
"build": "npm run build:dist; npm run build:minify",
25-
"test": "node node_modules/karma/bin/karma start karma.conf.js",
26-
"test:single": "node node_modules/karma/bin/karma start karma.conf.js --single-run",
27-
"test:ci": "node node_modules/karma/bin/karma start karma.conf.ci.js",
28-
"watch": "node node_modules/webpack/bin/webpack.js --watch",
25+
"test": "karma start karma.conf.js",
26+
"test:single": "karma start karma.conf.js --single-run",
27+
"test:ci": "karma start karma.conf.ci.js",
28+
"watch": "webpack --watch",
2929
"start": "npm run watch & npm run test",
3030
"release": "git push && npm publish && git push --tags"
3131
},
3232
"description": "Angular-Formly plugin which outputs bootstrap compatible form fields.",
3333
"peerDependencies": {
3434
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
35-
"angular-formly": "^4.0.5",
35+
"angular-formly": ">=4.0.5",
3636
"api-check": "^6.0.10"
3737
},
3838
"devDependencies": {

0 commit comments

Comments
 (0)