Skip to content

Commit ef5a86d

Browse files
author
hs
committed
first compiled version
1 parent d072e24 commit ef5a86d

File tree

10 files changed

+874
-0
lines changed

10 files changed

+874
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_dist
2+
_example
3+
node_modules
4+
.DS_Store
5+
.tscache
6+
docs

Gruntfile.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/*global module:false*/
2+
module.exports = function(grunt) {
3+
const sgc = require('./sharedGruntConfig')(grunt, __dirname, [], 'node');
4+
grunt.initConfig(sgc);
5+
};
6+
7+

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
hsOsaES6
2+
========
3+
[![npm version](https://badge.fury.io/js/hsosaes6.svg)](https://badge.fury.io/js/hsosaes6)
4+
--[![Build status](https://ci.appveyor.com/api/projects/status/sw91uymqktwajoxp?svg=true)](https://ci.appveyor.com/project/HelpfulScripts/hsosaes6)
5+
[![Built with Grunt](https://cdn.gruntjs.com/builtwith.svg)](https://gruntjs.com/)
6+
[![NPM License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://www.npmjs.com/package/hsosaes6)
7+
8+
Helpful Scripts ES6 interface to various OSX functions using the OSA Architecture.
9+
10+
## Installation
11+
`npm i hsosaes6`
12+
13+
See [docs](https://helpfulscripts.github.io/hsOsaES6/indexGH.html#!/api/hsOsaES6/0) for details

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,6 @@
4747
"webpack": "^4.14.0"
4848
},
4949
"dependencies": {
50+
"hsnode":"^2.2.7"
5051
}
5152
}

0 commit comments

Comments
 (0)