Skip to content
Open
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
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "6"
- "12"

sudo: false
dist: trusty
Expand All @@ -12,6 +12,7 @@ addons:
chrome: stable

cache:
yarn: true
directories:
- $HOME/.npm

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ember-cli-webfont

This addon wraps [webfonts-generator](https://github.com/sunflowerdeath/webfonts-generator) to allow you to easily generate webfonts as part of your ember build process.
This addon wraps [webfonts-generator](https://github.com/vusion/webfonts-generator) to allow you to easily generate webfonts as part of your ember build process.

## Installation

Expand Down Expand Up @@ -44,7 +44,7 @@ var app = new EmberApp({
});
```

Documentation on these options can be found on the [webfonts-generator](https://github.com/sunflowerdeath/webfonts-generator#list-of-options) repository.
Documentation on these options can be found on the [webfonts-generator](https://github.com/vusion/webfonts-generator#list-of-options) repository.

Additionally the `cssDest` option can go through some extra processing.
If left out, the default value is `temp/ember-cli-webfont.css` and the resulting file will be imported into `vendor.css` automatically.
Expand Down
1 change: 1 addition & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ module.exports = function() {
getChannelURL('canary')
]).then((urls) => {
return {
useYarn: true,
scenarios: [
{
name: 'ember-lts-2.12',
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@
"test:all": "ember try:each"
},
"dependencies": {
"broccoli": "1.1.4",
"@vusion/webfonts-generator": "^0.7.2",
"broccoli-caching-writer": "^3.0.3",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^3.0.0",
"dirmatch": "^0.1.2",
"ember-cli-babel": "^6.6.0",
"ember-cli-babel": "^7.23.1",
"escape-string-regexp": "1.0.5",
"merge": "^1.2.0",
"underscore": "^1.9.1",
"webfonts-generator": "^0.4.0"
"underscore": "^1.9.1"
},
"devDependencies": {
"broccoli": "1.1.4",
"broccoli-asset-rev": "^2.4.5",
"ember-ajax": "^3.0.0",
"ember-cli": "~3.3.0",
Expand Down
2 changes: 1 addition & 1 deletion utils/webfont/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const Plugin = require('broccoli-caching-writer')
const webfontsGenerator = require('webfonts-generator');
const webfontsGenerator = require('@vusion/webfonts-generator');
const path = require('path');
const dirmatch = require('dirmatch');
const _ = require('underscore');
Expand Down
Loading