Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed updated build to have ngJwtAuth.js as entrypoint #50

Merged
merged 2 commits into from Apr 7, 2016
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -4,7 +4,6 @@ Angular authentication with JSON Web tokens.
[![Build Status](https://travis-ci.org/spira/angular-jwt-auth.svg?branch=master)](https://travis-ci.org/spira/angular-jwt-auth)
[![Coverage Status](https://coveralls.io/repos/spira/angular-jwt-auth/badge.svg?branch=master)](https://coveralls.io/r/spira/angular-jwt-auth?branch=master)
[![Dependency Status](https://gemnasium.com/spira/angular-jwt-auth.svg)](https://gemnasium.com/spira/angular-jwt-auth)
[![Bower version](https://badge.fury.io/bo/angular-jwt-auth.svg)](http://badge.fury.io/bo/angular-jwt-auth)
[![npm version](https://badge.fury.io/js/angular-jwt-auth.svg)](http://badge.fury.io/js/angular-jwt-auth)

## Intro
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -3,7 +3,7 @@
"version": "4.0.4",
"description": "Angular JSON Web Token Authentication Module",
"main": "dist/ngJwtAuth.js",
"typings": "dist/index.d.ts",
"typings": "dist/ngJwtAuth.d.ts",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -17,10 +17,10 @@
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"angular": "^1.5.3",
"angular-cookies": "^1.5.3",
"angular": "^1.5.0",
"angular-cookies": "^1.5.0",
"angular-utf8-base64": "0.0.2",
"lodash": "^4.8.2",
"lodash": "^4.0.0",
"moment": "^2.12.0"
},
"devDependencies": {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/provider/ngJwtAuthServiceProvider.spec.ts
Expand Up @@ -4,7 +4,7 @@ import {INgJwtAuthServiceConfig} from "../ngJwtAuthInterfaces";

import "angular";
import "angular-mocks";
import "../index" //@todo double check this is right
import "../ngJwtAuth";

let expect:Chai.ExpectStatic = chai.expect;

Expand Down
2 changes: 1 addition & 1 deletion src/service/ngJwtAuthService.spec.ts
Expand Up @@ -9,7 +9,7 @@ import * as _ from "lodash";
import * as moment from "moment";
import "angular";
import "angular-mocks";
import "../index" //@todo double check this is right
import "../ngJwtAuth";

import {cookiesFactoryMock, locationFactoryMock, fixtures} from "../fixtures.spec"

Expand Down
2 changes: 1 addition & 1 deletion webpack/webpack.test.js
@@ -1,7 +1,7 @@
var loaders = require("./loaders");
var webpack = require('webpack');
module.exports = {
entry: ['./src/index.ts'],
entry: ['./src/ngJwtAuth.ts'],
output: {
filename: 'build.js',
path: 'tmp'
Expand Down