Skip to content

Commit

Permalink
chore(package) v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Sep 28, 2015
1 parent 88e37d7 commit 04b5b34
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2015.09.28, v1.5.0

feature:
- (smalltalk) add native


2015.09.26, v1.4.1

feature:
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smalltalk",
"version": "1.4.1",
"version": "1.5.0",
"homepage": "https://github.com/coderaiser/smalltalk",
"authors": [
"coderaiser <mnemonic.enemy@gmail.com>"
Expand Down
1 change: 1 addition & 0 deletions dist/smalltalk.native.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smalltalk",
"version": "1.4.1",
"version": "1.5.0",
"description": "Promise-based Alert, Confirm and Prompt replacement",
"homepage": "http://github.com/coderaiser/smalltalk",
"repository": {
Expand All @@ -10,12 +10,15 @@
"main": "dist/smalltalk.min.js",
"scripts": {
"watch": "watch 'npm run 6to5' dist",
"6to5": "babel -d dist src",
"6to5": "babel -d lib src",
"build-css": "minify css/smalltalk.css > dist/smalltalk.min.css",
"build-js": "npm run 6to5 && minify dist/smalltalk.js > dist/smalltalk.min.js",
"build-js": "npm run 6to5 && minify lib/smalltalk.js > dist/smalltalk.min.js",
"build-js-native": "minify lib/smalltalk.native.js > dist/smalltalk.native.min.js",
"build-poly": "cat node_modules/promise-polyfill/Promise.min.js dist/smalltalk.min.js > dist/smalltalk.poly.min.js",
"build": "npm run build-css && npm run build-js && npm run build-poly",
"cat": "node -e \"var p=process,fs=require('fs');p.argv.slice(1).map(n => p.stdout.write(fs.readFileSync(n, 'utf8')))\"",
"build-poly-native": "cat node_modules/promise-polyfill/Promise.min.js dist/smalltalk.native.min.js > dist/smalltalk.native.poly.min.js",
"build-js-full": "npm run build-js && npm run build-poly",
"build-native-full": "npm run build-js-native && npm run build-js-native",
"build": "npm run build-css && npm run build-js-full && npm run build-native-full",
"bower": "bower",
"babel": "babel",
"minify": "minify",
Expand Down

0 comments on commit 04b5b34

Please sign in to comment.