Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ascoders committed Jan 1, 2019
1 parent 7e31fbf commit f799526
Show file tree
Hide file tree
Showing 7 changed files with 6,696 additions and 7,093 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@
/.DS_Store
/coverage
/.nyc_output
/npm-debug.log
/npm-debug.log
/.idea
/package-lock.json
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
/coverage
/.nyc_output
/npm-debug.log
/tests
/tests
/.idea
/package-lock.json
/packages
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
13,745 changes: 6,667 additions & 7,078 deletions package-lock.json

Large diffs are not rendered by default.

20 changes: 12 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
{
"name": "pri-plugin-dob",
"version": "1.1.3",
"types": "src/index.ts",
"version": "1.1.4",
"types": "src/index.tsx",
"main": "dist/src/index.js",
"scripts": {
"start": "pri plugin watch",
"prepublishOnly": "pri plugin build",
"start": "pri dev",
"prepublishOnly": "npm run build",
"release": "npm publish",
"test": "pri plugin test",
"test": "pri test",
"build": "pri build",
"preview": "pri preview"
"preview": "pri preview",
"docs": "pri docs",
"bundle": "pri bundle",
"analyse": "pri analyse",
"format": "tslint --fix './src/**/*.?(ts|tsx)' && prettier --write './src/**/*.?(ts|tsx)'"
},
"devDependencies": {
"pri": "*"
"pri": "1.0.0-beta74"
},
"pri": {
"web-entry": [
Expand All @@ -22,6 +26,6 @@
"type": "plugin"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.56"
"@babel/runtime": "^7.0.0"
}
}
8 changes: 3 additions & 5 deletions tests/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import test from "ava"

test("Example", t => {
t.true(true)
})
test('Example', () => {
expect(true).toBe(true);
});
6 changes: 6 additions & 0 deletions tsconfig.jest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"module": "commonjs"
}
}

0 comments on commit f799526

Please sign in to comment.