Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PATH := node_modules/.bin:$(PATH)
SHELL := /bin/bash
PATH := $(shell echo $${PATH//\.\/node_modules\/\.bin:/}):node_modules/.bin

SRC = $(wildcard src/*.js)
LIB = $(SRC:src/%.js=lib/%.js)
Expand All @@ -11,7 +11,7 @@ v ?= patch
build: node_modules $(LIB)
lib/%.js: src/%.js
@mkdir -p $(@D)
@browserify $< --standalone $(@F:%.js=%) | uglifyjs -o $@
@browserify --exclude @websdk/rhumb $< --standalone $(@F:%.js=%) > $@

node_modules: package.json
$(NPM)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@websdk/nap",
"version": "0.9.8",
"version": "0.10.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you bumping the version by hand?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, using npm version. I'm going with the no-one-really-cares-about-semver-before-1.0 approach, so bumping minor for the breaking changes and patch for non-breaking. Once we hit 1.0.0 though we should take better care.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cool

"description": "Organizing applications into resources",
"main": "lib/nap.js",
"devDependencies": {
Expand Down