Skip to content
This repository was archived by the owner on Mar 16, 2021. It is now read-only.

Commit fedf13f

Browse files
committed
Merge branch 'release/1.0.0-beta4'
2 parents e0284f1 + a2575ee commit fedf13f

79 files changed

Lines changed: 13265 additions & 78700 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.angular-cli.json

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "angular-handsontable"
5+
},
6+
"apps": [
7+
{
8+
"root": "src",
9+
"name": "dev",
10+
"outDir": "dist/app",
11+
"assets": [
12+
"assets",
13+
"favicon.ico"
14+
],
15+
"index": "index.html",
16+
"main": "main.ts",
17+
"polyfills": "polyfills.ts",
18+
"test": "test.ts",
19+
"tsconfig": "tsconfig.app.json",
20+
"testTsconfig": "tsconfig.spec.json",
21+
"prefix": "app",
22+
"styles": [
23+
"styles.css"
24+
],
25+
"scripts": [],
26+
"environmentSource": "environments/environment.ts",
27+
"environments": {
28+
"dev": "environments/environment.ts",
29+
"prod": "environments/environment.prod.ts"
30+
}
31+
},
32+
{
33+
"root": "src",
34+
"name": "packages",
35+
"outDir": "dist/app",
36+
"assets": [
37+
"assets",
38+
"favicon.ico"
39+
],
40+
"index": "index.html",
41+
"main": "main.ts",
42+
"polyfills": "polyfills.ts",
43+
"test": "test.ts",
44+
"tsconfig": "tsconfig.packages.json",
45+
"testTsconfig": "tsconfig.spec.json",
46+
"prefix": "app",
47+
"styles": [
48+
"styles.css"
49+
],
50+
"scripts": [],
51+
"environmentSource": "environments/environment.ts",
52+
"environments": {
53+
"dev": "environments/environment.ts",
54+
"prod": "environments/environment.prod.ts"
55+
}
56+
}
57+
],
58+
"e2e": {
59+
"protractor": {
60+
"config": "./protractor.conf.js"
61+
}
62+
},
63+
"lint": [
64+
{
65+
"project": "src/tsconfig.app.json"
66+
},
67+
{
68+
"project": "src/tsconfig.spec.json"
69+
},
70+
{
71+
"project": "e2e/tsconfig.e2e.json"
72+
}
73+
],
74+
"test": {
75+
"karma": {
76+
"config": "./karma.conf.js"
77+
}
78+
},
79+
"defaults": {
80+
"styleExt": "css",
81+
"component": {}
82+
}
83+
}

.gitignore

Lines changed: 62 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,62 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
2-
3-
# compiled output
4-
/tmp
5-
/out-tsc
6-
7-
# dependencies
8-
/node_modules
9-
/src/handsontable.css
10-
11-
# IDEs and editors
12-
/.idea
13-
.project
14-
.classpath
15-
.c9/
16-
*.launch
17-
.settings/
18-
*.sublime-workspace
19-
20-
# IDE - VSCode
21-
.vscode/
22-
!.vscode/settings.json
23-
!.vscode/tasks.json
24-
!.vscode/launch.json
25-
!.vscode/extensions.json
26-
27-
# misc
28-
*.js
29-
!dist/**/*.js
30-
!config/*
31-
!bundles/*
32-
!karma.conf.js
33-
!webpack.config.js
34-
*.map
35-
!make.js
36-
/.sass-cache
37-
/connect.lock
38-
/coverage
39-
/libpeerconnection.log
40-
npm-debug.log
41-
testem.log
42-
/typings
43-
*.metadata.json
44-
!dist/**/*.metadata.json
45-
46-
# e2e
47-
/e2e/*.js
48-
/e2e/*.map
49-
50-
src/**/*.js
51-
src/**/*.js.map
52-
53-
tests/**/*.js
54-
tests/**/*.js.map
55-
56-
# System Files
57-
.DS_Store
58-
Thumbs.db
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env
59+
60+
dist/
61+
.ng_build/
62+
/src/@my

.npmignore

Lines changed: 32 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,34 @@
1-
./config
2-
./tests
3-
./tmp
4-
.vscode
5-
.github
1+
# Node
2+
node_modules/*
3+
npm-debug.log
4+
docs/*
5+
# DO NOT IGNORE TYPESCRIPT FILES FOR NPM
6+
# TypeScript
7+
# *.js
8+
# *.map
9+
# *.d.ts
10+
11+
# JetBrains
12+
.idea
13+
.project
14+
.settings
15+
.idea/*
16+
*.iml
17+
18+
# VS Code
19+
.vscode/*
20+
21+
# Windows
22+
Thumbs.db
23+
Desktop.ini
24+
25+
# Mac
626
.DS_Store
27+
**/.DS_Store
28+
29+
# Ngc generated files
30+
**/*.ngfactory.ts
731

8-
node_modules/
32+
# Library files
33+
src/*
34+
build/*

0 commit comments

Comments
 (0)