Skip to content

Commit

Permalink
Release 0.0.1-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gky360 authored Jun 13, 2020
2 parents b645a25 + f6f7af8 commit 4d8fd2b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
fail-fast: true
matrix:
os:
- windows-latest
- macos-latest
- ubuntu-latest
- macos-latest
- windows-latest
node_version:
- 12.16.0

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- uses: actions/setup-node@v1
with:
node_version: 12.16.0
registry-url: https://npm.pkg.github.com/
registry-url: https://npm.pkg.github.com/gky360
- run: npm ci

- run: npm run build
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/.github/
/.storybook/
/examples/
/src/
/storybook-static/
*.test.*
*.stories.*
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-ngl",
"version": "0.0.1-alpha.2",
"version": "0.0.1-alpha.3",
"description": "React wrapper for ngl",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
3 changes: 0 additions & 3 deletions src/components/Hello/Hello.scss

This file was deleted.

1 change: 0 additions & 1 deletion src/components/Hello/Hello.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import './Hello.scss';

export interface HelloProps {
/**
Expand Down
6 changes: 2 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
import * as components from './components';
import * as utils from './utils';

export { components, utils };
export * from './components';
export * from './utils';
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// "checkJs": true, /* Report errors in .js files. */
"jsx": "react", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "./dist", /* Redirect output structure to the directory. */
Expand Down

0 comments on commit 4d8fd2b

Please sign in to comment.