forked from TryGhost/SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added scaffolding for timezone-data package
- Loading branch information
Showing
11 changed files
with
415 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: ['ghost'], | ||
extends: [ | ||
'plugin:ghost/es', | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019 Ghost Foundation | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Timezone Data | ||
|
||
## Install | ||
|
||
`npm install @tryghost/timezone-data --save` | ||
|
||
or | ||
|
||
`yarn add @tryghost/timezone-data` | ||
|
||
|
||
## Usage | ||
|
||
|
||
## Develop | ||
|
||
This is a mono repository, managed with [lerna](https://lernajs.io/). | ||
|
||
Follow the instructions for the top-level repo. | ||
1. `git clone` this repo & `cd` into it as usual | ||
2. Run `yarn` to install top-level dependencies. | ||
|
||
|
||
## Run | ||
|
||
- `yarn dev` | ||
|
||
|
||
## Test | ||
|
||
- `yarn lint` run just eslint | ||
- `yarn test` run lint and tests | ||
|
||
|
||
|
||
|
||
# Copyright & License | ||
|
||
Copyright (c) 2019 Ghost Foundation - Released under the [MIT license](LICENSE). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import * as timezones from './timezones.json'; | ||
export default timezones; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "@tryghost/timezone-data", | ||
"version": "0.0.0", | ||
"repository": "https://github.com/TryGhost/Ghost-SDKs/tree/master/packages/timezone-data", | ||
"author": "Ghost Foundation", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"dev": "echo \"Implement me!\"", | ||
"test": "NODE_ENV=testing mocha './test/**/*.test.js'", | ||
"lint": "eslint . --ext .js --cache", | ||
"posttest": "yarn lint" | ||
}, | ||
"files": [ | ||
"index.js", | ||
"lib" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"devDependencies": { | ||
"mocha": "6.0.1", | ||
"should": "13.2.3", | ||
"sinon": "7.2.4" | ||
}, | ||
"dependencies": { | ||
"bluebird": "^3.5.3", | ||
"ghost-ignition": "^3.0.2", | ||
"lodash": "^4.17.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
plugins: ['ghost'], | ||
extends: [ | ||
'plugin:ghost/test', | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// Switch these lines once there are useful utils | ||
// const testUtils = require('./utils'); | ||
require('./utils'); | ||
|
||
describe('Hello world', function () { | ||
it('Runs a test', function () { | ||
// TODO: Write me! | ||
'hello'.should.eql('hello'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Custom Should Assertions | ||
* | ||
* Add any custom assertions to this file. | ||
*/ | ||
|
||
// Example Assertion | ||
// should.Assertion.add('ExampleAssertion', function () { | ||
// this.params = {operator: 'to be a valid Example Assertion'}; | ||
// this.obj.should.be.an.Object; | ||
// }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Test Utilities | ||
* | ||
* Shared utils for writing tests | ||
*/ | ||
|
||
// Require overrides - these add globals for tests | ||
require('./overrides'); | ||
|
||
// Require assertions - adds custom should assertions | ||
require('./assertions'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// This file is required before any test is run | ||
|
||
// Taken from the should wiki, this is how to make should global | ||
// Should is a global in our eslint test config | ||
global.should = require('should').noConflict(); | ||
should.extend(); | ||
|
||
// Sinon is a simple case | ||
// Sinon is a global in our eslint test config | ||
global.sinon = require('sinon'); |
Oops, something went wrong.