super_duper_umbrella
v0.0.2
Published
this is just an automation test
Downloads
2
Readme
Install / Import
Node:
> npm install --save super_duper_umbrella
import { myFunction, myObject } from 'super_duper_umbrella';
//OR to import a specific file:
import { myFunction } from 'super_duper_umbrella/myFunction'
import { myObject } from 'super_duper_umbrella/myObject'
Deno:
For the latest version:
import { myFunction, myObject } from 'https://deno.land/x/super_duper_umbrella/mod.ts';
//OR importing specific file:
import { myFunction } from 'https://deno.land/x/super_duper_umbrella/myFunction.ts';
import { myObject } from 'https://deno.land/x/super_duper_umbrella/myObject.ts';
To import a specific release:
import { myFunction, myObject } from 'https://deno.land/x/[email protected]/mod.ts';
//OR
import { myFunction } from 'https://deno.land/x/[email protected]/myFunction.ts';
import { myObject } from 'https://deno.land/x/[email protected]/myObject.ts';
CI
This repository has has continus integration and automatic publishing implemented via GitHub Action.
Refer to TEMPLATE_README.md for instructions.
patch1
patch2