Skip to content

Commit

Permalink
Okay let's try doing this through .npmignore only
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneCypher committed Apr 13, 2020
1 parent 1c51d96 commit 74cec29
Show file tree
Hide file tree
Showing 9 changed files with 67 additions and 26 deletions.
58 changes: 58 additions & 0 deletions .npmignore
@@ -0,0 +1,58 @@
# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages
.idea

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

.DS_Store
.rpt2_cache

src/js/jssm-dot.js

build/
docs/
.github/
.rpt_cache/
notes/
src/assets/
src/buildjs/
src/machines/
src/site/

dist/jssm.es5.iife.js
dist/jssm.es5.iife.nonmin.js
dist/jssm.es5.cjs.nonmin.js
dist/es6/jssm-dot.nonmin.js
2 changes: 1 addition & 1 deletion dist/es6/version.js
@@ -1,2 +1,2 @@
const version = "5.32.13";
const version = "5.32.14";
export { version };
2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.nonmin.js
Expand Up @@ -15598,7 +15598,7 @@ function peg$parse(input, options) {
}
}

const version = "5.32.13";
const version = "5.32.14";

function arrow_direction(arrow) {
switch (String(arrow)) {
Expand Down
2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.nonmin.js
Expand Up @@ -15597,7 +15597,7 @@ var jssm = (function (exports) {
}
}

const version = "5.32.13";
const version = "5.32.14";

function arrow_direction(arrow) {
switch (String(arrow)) {
Expand Down
4 changes: 2 additions & 2 deletions docs/lib/index.html
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset='utf-8'>
<title>jssm 5.32.13 | Documentation</title>
<title>jssm 5.32.14 | Documentation</title>
<meta name='description' content='A Javascript finite state machine (FSM) with a terse DSL and a simple API. Well tested, and typed with Flowtype. MIT License.'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<link href='assets/bass.css' rel='stylesheet'>
Expand All @@ -15,7 +15,7 @@
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
<div class='py1 px2'>
<h3 class='mb0 no-anchor'>jssm</h3>
<div class='mb1'><code>5.32.13</code></div>
<div class='mb1'><code>5.32.14</code></div>
<input
placeholder='Filter'
id='filter-input'
Expand Down
19 changes: 1 addition & 18 deletions package.json
@@ -1,26 +1,9 @@
{
"name": "jssm",
"version": "5.32.13",
"version": "5.32.14",
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist/jssm.es5.cjs.js",
"dist/es6/jssm.js",
"dist/es6/jssm_util.js",
"dist/es6/jssm-dot.js",
"dist/es6/version.js",
"src/**/*.ts",
".nyc_output/**/*",
"src/tests/*.js",
".editorconfig",
".eslintrc",
".nycrc",
"tsconfig.json",
".codeclimate.yml",
"**/*.d.ts",
"CHANGELOG.md"
],
"autoupdate": {
"source": "git",
"target": "git://github.com/StoneCypher/jssm.git",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version.ts
@@ -1,3 +1,3 @@

const version: string = "5.32.13";
const version: string = "5.32.14";
export { version };

0 comments on commit 74cec29

Please sign in to comment.