create-powerapps-project 0.28.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -1,27 +1,15 @@
1
1
  #!/usr/bin/env node
2
- "use strict";
3
- var __importDefault = (this && this.__importDefault) || function (mod) {
4
- return (mod && mod.__esModule) ? mod : { "default": mod };
5
- };
6
- Object.defineProperty(exports, "__esModule", { value: true });
7
- const node_path_1 = __importDefault(require("node:path"));
8
- const plop_1 = require("plop");
9
- const minimist_1 = __importDefault(require("minimist"));
10
- // eslint-disable-next-line @typescript-eslint/no-var-requires
11
- const packageJson = require('../package.json');
12
- const argv = (0, minimist_1.default)(process.argv.slice(2));
13
- if (argv.version || argv.v) {
14
- console.log(`${packageJson.version}`);
15
- }
16
- else {
17
- plop_1.Plop.launch({
18
- cwd: process.cwd(),
19
- configPath: node_path_1.default.join(__dirname, 'plopfile.js')
20
- }, env => {
21
- const options = {
22
- ...env,
23
- dest: process.cwd()
24
- };
25
- return (0, plop_1.run)(options, undefined, true);
26
- });
27
- }
2
+ import { Plop, run } from 'plop';
3
+ import path, { dirname } from 'node:path';
4
+ import { fileURLToPath } from 'node:url';
5
+ const __dirname = dirname(fileURLToPath(import.meta.url));
6
+ Plop.prepare({
7
+ cwd: process.cwd(),
8
+ configPath: path.join(__dirname, 'plopfile.js')
9
+ }, (env) => {
10
+ const options = {
11
+ ...env,
12
+ dest: process.cwd()
13
+ };
14
+ return run(options, undefined, true);
15
+ });
package/lib/nuget.js CHANGED
@@ -1,14 +1,8 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.nugetRestore = exports.getNugetPackageVersions = void 0;
7
- const https_1 = __importDefault(require("https"));
8
- const child_process_1 = require("child_process");
9
- const getNugetPackageVersions = (name) => {
1
+ import https from 'node:https';
2
+ import { spawnSync } from 'node:child_process';
3
+ export const getNugetPackageVersions = (name) => {
10
4
  return new Promise((resolve, reject) => {
11
- https_1.default.get(`https://azuresearch-usnc.nuget.org/query?q=packageid:${name}`, (response) => {
5
+ https.get(`https://azuresearch-usnc.nuget.org/query?q=packageid:${name}`, (response) => {
12
6
  let body = '';
13
7
  response.on('data', (d) => {
14
8
  body += d;
@@ -30,12 +24,10 @@ const getNugetPackageVersions = (name) => {
30
24
  });
31
25
  });
32
26
  };
33
- exports.getNugetPackageVersions = getNugetPackageVersions;
34
- const nugetRestore = async () => {
27
+ export const nugetRestore = async () => {
35
28
  // Install nuget packages
36
29
  if (process.env.JEST_WORKER_ID !== undefined) {
37
30
  return;
38
31
  }
39
- (0, child_process_1.spawnSync)('dotnet', ['restore'], { cwd: process.cwd(), stdio: 'inherit' });
32
+ spawnSync('dotnet', ['restore'], { cwd: process.cwd(), stdio: 'inherit' });
40
33
  };
41
- exports.nugetRestore = nugetRestore;
@@ -1,22 +1,17 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.install = void 0;
4
- /* eslint-disable @typescript-eslint/no-explicit-any */
5
- const child_process_1 = require("child_process");
6
- const install = async (packageManager, packages) => {
1
+ import { spawnSync } from 'node:child_process';
2
+ export const install = async (packageManager, packages) => {
7
3
  if (process.env.JEST_WORKER_ID != undefined) {
8
4
  return;
9
5
  }
10
6
  if (packages) {
11
7
  if (packages.devDependencies) {
12
- (0, child_process_1.spawnSync)(packageManager, ['add', ...packages.devDependencies], { stdio: 'inherit', shell: true });
8
+ spawnSync(packageManager, ['add', ...packages.devDependencies], { stdio: 'inherit', shell: true });
13
9
  }
14
10
  if (packages.dependencies) {
15
- (0, child_process_1.spawnSync)(packageManager, ['add', ...packages.dependencies], { stdio: 'inherit', shell: true });
11
+ spawnSync(packageManager, ['add', ...packages.dependencies], { stdio: 'inherit', shell: true });
16
12
  }
17
13
  }
18
14
  else {
19
- (0, child_process_1.spawnSync)(packageManager, ['install'], { stdio: 'inherit', shell: true });
15
+ spawnSync(packageManager, ['install'], { stdio: 'inherit', shell: true });
20
16
  }
21
17
  };
22
- exports.install = install;
@@ -1,51 +1,24 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
- Object.defineProperty(o, "default", { enumerable: true, value: v });
15
- }) : function(o, v) {
16
- o["default"] = v;
17
- });
18
- var __importStar = (this && this.__importStar) || function (mod) {
19
- if (mod && mod.__esModule) return mod;
20
- var result = {};
21
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
- __setModuleDefault(result, mod);
23
- return result;
24
- };
25
- var __importDefault = (this && this.__importDefault) || function (mod) {
26
- return (mod && mod.__esModule) ? mod : { "default": mod };
27
- };
28
- Object.defineProperty(exports, "__esModule", { value: true });
29
- const path_1 = __importDefault(require("path"));
30
- const child_process_1 = require("child_process");
31
- const fs_1 = __importDefault(require("fs"));
32
- const nuget = __importStar(require("./nuget"));
33
- const pkg = __importStar(require("./packageManager"));
1
+ import path, { dirname } from 'node:path';
2
+ import { spawnSync, spawn } from 'node:child_process';
3
+ import { fileURLToPath } from 'node:url';
4
+ import fs from 'node:fs';
5
+ import * as nuget from './nuget.js';
6
+ import * as pkg from './packageManager.js';
7
+ const __dirname = dirname(fileURLToPath(import.meta.url));
34
8
  const didSucceed = (code) => `${code}` === '0';
35
- exports.default = (plop) => {
9
+ export default (plop) => {
36
10
  plop.setDefaultInclude({ actionTypes: true });
37
11
  plop.setActionType('addSolution', async (answers) => {
38
12
  // Add solution
39
- (0, child_process_1.spawnSync)('dotnet', ['new', 'sln', '-n', answers.name], { cwd: process.cwd(), stdio: 'inherit' });
40
- (0, child_process_1.spawnSync)('dotnet', ['sln', 'add', `${answers.name}.csproj`], { cwd: process.cwd(), stdio: 'inherit' });
13
+ spawnSync('dotnet', ['new', 'sln', '-n', answers.name], { cwd: process.cwd(), stdio: 'inherit' });
14
+ spawnSync('dotnet', ['sln', 'add', `${answers.name}.csproj`], { cwd: process.cwd(), stdio: 'inherit' });
41
15
  return 'added dotnet solution';
42
16
  });
43
17
  plop.setActionType('addScript', async (answers) => {
44
- const packagePath = path_1.default.resolve(process.cwd(), 'package.json');
45
- // eslint-disable-next-line @typescript-eslint/no-var-requires
46
- const packageJson = require(packagePath);
18
+ const packagePath = path.resolve(process.cwd(), 'package.json');
19
+ const packageJson = JSON.parse(fs.readFileSync(packagePath, 'utf-8'));
47
20
  packageJson.scripts[answers.scriptKey] = answers.scriptValue;
48
- await fs_1.default.promises.writeFile(packagePath, JSON.stringify(packageJson, null, 4), 'utf8');
21
+ await fs.promises.writeFile(packagePath, JSON.stringify(packageJson, null, 4), 'utf8');
49
22
  return `added ${answers.scriptKey} script to package.json`;
50
23
  });
51
24
  plop.setActionType('npmInstall', async (answers) => {
@@ -57,13 +30,13 @@ exports.default = (plop) => {
57
30
  return 'restored nuget packages';
58
31
  });
59
32
  plop.setActionType('signAssembly', async (answers) => {
60
- const keyPath = path_1.default.resolve(process.cwd(), `${answers.name}.snk`);
33
+ const keyPath = path.resolve(process.cwd(), `${answers.name}.snk`);
61
34
  return new Promise((resolve, reject) => {
62
35
  if (process.env.JEST_WORKER_ID !== undefined) {
63
36
  resolve('Testing so no need to sign');
64
37
  }
65
38
  else {
66
- const sign = (0, child_process_1.spawn)(path_1.default.resolve(__dirname, '..', 'bin', 'sn.exe'), ['-q', '-k', keyPath], { stdio: 'inherit' });
39
+ const sign = spawn(path.resolve(__dirname, '..', 'bin', 'sn.exe'), ['-q', '-k', keyPath], { stdio: 'inherit' });
67
40
  sign.on('close', (code) => {
68
41
  if (didSucceed(code)) {
69
42
  resolve('signed assembly');
@@ -85,7 +58,7 @@ exports.default = (plop) => {
85
58
  args.push('-fw', 'react');
86
59
  }
87
60
  return new Promise((resolve, reject) => {
88
- const pac = (0, child_process_1.spawn)('pac', args, { stdio: 'inherit' });
61
+ const pac = spawn('pac', args, { stdio: 'inherit' });
89
62
  pac.on('close', (code) => {
90
63
  if (didSucceed(code)) {
91
64
  resolve('pcf project created');
package/lib/plopfile.js CHANGED
@@ -1,17 +1,10 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const path_1 = __importDefault(require("path"));
7
- const fs_1 = __importDefault(require("fs"));
8
- const nuget_1 = require("./nuget");
9
- // eslint-disable-next-line @typescript-eslint/no-var-requires
10
- const version = require('../package').version;
1
+ import path from 'node:path';
2
+ import fs from 'node:fs';
3
+ import { getNugetPackageVersions } from './nuget.js';
11
4
  /* eslint-disable @typescript-eslint/no-explicit-any */
12
- exports.default = (plop) => {
13
- plop.setWelcomeMessage(`Creating new Dataverse project using create-powerapps-project v${version}. Please choose type of project to create.`);
14
- plop.load('./plopActions');
5
+ export default async (plop) => {
6
+ plop.setWelcomeMessage('Creating new Dataverse project using create-powerapps-project. Please choose type of project to create.');
7
+ await plop.load('./plopActions');
15
8
  const packageQuestion = {
16
9
  type: 'list',
17
10
  name: 'package',
@@ -94,7 +87,7 @@ exports.default = (plop) => {
94
87
  },
95
88
  choices: async (answers) => {
96
89
  const crmPackage = answers.pluginPackage ? 'Microsoft.CrmSdk.CoreAssemblies' : 'Microsoft.CrmSdk.Workflow';
97
- const versions = await (0, nuget_1.getNugetPackageVersions)(crmPackage);
90
+ const versions = await getNugetPackageVersions(crmPackage);
98
91
  return versions;
99
92
  }
100
93
  },
@@ -140,14 +133,14 @@ exports.default = (plop) => {
140
133
  data.org = new URL(data.server).hostname.split('.')[0];
141
134
  return [
142
135
  async (answers) => {
143
- const xrmVersions = await (0, nuget_1.getNugetPackageVersions)('JourneyTeam.Xrm');
136
+ const xrmVersions = await getNugetPackageVersions('JourneyTeam.Xrm');
144
137
  answers.xrmVersion = xrmVersions.shift();
145
138
  return `retrieved latest JourneyTeam.Xrm version ${answers.xrmVersion}`;
146
139
  },
147
140
  {
148
141
  type: 'add',
149
142
  templateFile: '../plop-templates/assembly/assembly.csproj.hbs',
150
- path: path_1.default.resolve(process.cwd(), '{{name}}.csproj'),
143
+ path: path.resolve(process.cwd(), '{{name}}.csproj'),
151
144
  skip: (answers) => {
152
145
  if (answers.pluginPackage) {
153
146
  return 'generating plugin package';
@@ -160,7 +153,7 @@ exports.default = (plop) => {
160
153
  {
161
154
  type: 'add',
162
155
  templateFile: '../plop-templates/assembly/package.csproj.hbs',
163
- path: path_1.default.resolve(process.cwd(), '{{name}}.csproj'),
156
+ path: path.resolve(process.cwd(), '{{name}}.csproj'),
164
157
  skip: (answers) => {
165
158
  if (!answers.pluginPackage) {
166
159
  return 'generating regular assembly';
@@ -173,7 +166,7 @@ exports.default = (plop) => {
173
166
  {
174
167
  type: 'add',
175
168
  templateFile: '../plop-templates/assembly/dataverse.config.json.hbs',
176
- path: path_1.default.resolve(process.cwd(), 'dataverse.config.json'),
169
+ path: path.resolve(process.cwd(), 'dataverse.config.json'),
177
170
  skip: (answers) => {
178
171
  if (answers.pluginPackage) {
179
172
  return 'generating plugin package';
@@ -186,7 +179,7 @@ exports.default = (plop) => {
186
179
  {
187
180
  type: 'add',
188
181
  templateFile: '../plop-templates/assembly/dataverse.package.config.json.hbs',
189
- path: path_1.default.resolve(process.cwd(), 'dataverse.config.json'),
182
+ path: path.resolve(process.cwd(), 'dataverse.config.json'),
190
183
  skip: (answers) => {
191
184
  if (!answers.pluginPackage) {
192
185
  return 'generating regular assembly';
@@ -201,11 +194,11 @@ exports.default = (plop) => {
201
194
  templateFiles: [
202
195
  '../plop-templates/assembly/package.json.hbs',
203
196
  '../plop-templates/assembly/plopfile.js',
204
- '../plop-templates/assembly/{{fake}}.gitignore.hbs',
205
- '../plop-templates/assembly/{{fake}}.gitattributes.hbs',
197
+ '../plop-templates/assembly/.gitignore',
198
+ '../plop-templates/assembly/.gitattributes',
206
199
  '../plop-templates/assembly/builderSettings.json',
207
200
  '../plop-templates/assembly/.vscode/tasks.json.hbs',
208
- '../plop-templates/assembly/{{fake}}.editorconfig.hbs'
201
+ '../plop-templates/assembly/.editorconfig'
209
202
  ],
210
203
  base: '../plop-templates/assembly',
211
204
  destination: process.cwd(),
@@ -277,19 +270,19 @@ exports.default = (plop) => {
277
270
  {
278
271
  type: 'add',
279
272
  templateFile: '../plop-templates/pcf/tsconfig.json',
280
- path: path_1.default.resolve(process.cwd(), 'tsconfig.json'),
273
+ path: path.resolve(process.cwd(), 'tsconfig.json'),
281
274
  force: true
282
275
  },
283
276
  {
284
277
  type: 'add',
285
278
  templateFile: '../plop-templates/pcf/plopfile.js',
286
- path: path_1.default.resolve(process.cwd(), 'plopfile.js'),
279
+ path: path.resolve(process.cwd(), 'plopfile.js'),
287
280
  force: true
288
281
  },
289
282
  {
290
283
  type: 'add',
291
284
  templateFile: '../plop-templates/pcf/.gitattributes',
292
- path: path_1.default.resolve(process.cwd(), '.gitattributes'),
285
+ path: path.resolve(process.cwd(), '.gitattributes'),
293
286
  force: true
294
287
  },
295
288
  {
@@ -297,7 +290,7 @@ exports.default = (plop) => {
297
290
  templateFiles: [
298
291
  '../plop-templates/pcf/App.tsx.hbs',
299
292
  '../plop-templates/pcf/AppContext.tsx',
300
- '../plop-templates/webresource/{{fake}}.gitattributes.hbs'
293
+ '../plop-templates/webresource/.gitattributes'
301
294
  ],
302
295
  base: '../plop-templates/pcf',
303
296
  destination: `${process.cwd()}/{{name}}`,
@@ -349,7 +342,7 @@ exports.default = (plop) => {
349
342
  },
350
343
  async (answers) => {
351
344
  if (answers.react) {
352
- await fs_1.default.promises.rm(path_1.default.resolve(process.cwd(), answers.name, 'HelloWorld.tsx'));
345
+ await fs.promises.rm(path.resolve(process.cwd(), answers.name, 'HelloWorld.tsx'));
353
346
  return 'removed HelloWorld component';
354
347
  }
355
348
  return 'react not included';
@@ -375,7 +368,7 @@ exports.default = (plop) => {
375
368
  type: 'input',
376
369
  name: 'name',
377
370
  message: 'project name',
378
- default: path_1.default.basename(process.cwd())
371
+ default: path.basename(process.cwd())
379
372
  },
380
373
  {
381
374
  type: 'input',
@@ -392,10 +385,10 @@ exports.default = (plop) => {
392
385
  templateFiles: [
393
386
  '../plop-templates/webresource/*',
394
387
  '../plop-templates/webresource/.*',
395
- '../plop-templates/webresource/{{fake}}.gitignore.hbs',
396
- '../plop-templates/webresource/{{fake}}.gitattributes.hbs',
397
- '../plop-templates/webresource/{{fake}}.eslintignore.hbs',
398
- '../plop-templates/webresource/{{fake}}.prettierignore.hbs'
388
+ '../plop-templates/webresource/.gitignore',
389
+ '../plop-templates/webresource/.gitattributes',
390
+ '../plop-templates/webresource/.eslintignore',
391
+ '../plop-templates/webresource/.prettierignore'
399
392
  ],
400
393
  base: '../plop-templates/webresource',
401
394
  destination: process.cwd(),
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "create-powerapps-project",
3
3
  "description": "💧 plop generator for Dataverse development",
4
- "version": "0.28.1",
4
+ "version": "1.0.0",
5
5
  "license": "MIT",
6
- "main": "lib/index.js",
6
+ "exports": "./lib/index.js",
7
+ "engines": {
8
+ "node": ">=14.16"
9
+ },
7
10
  "bin": {
8
11
  "create-powerapps-project": "lib/index.js"
9
12
  },
@@ -21,12 +24,11 @@
21
24
  "lint": "eslint",
22
25
  "clean": "rimraf lib"
23
26
  },
27
+ "type": "module",
24
28
  "dependencies": {
25
- "plop": "^2.7.6",
26
- "minimist": "^1.2.6"
29
+ "plop": "^3.1.2"
27
30
  },
28
31
  "devDependencies": {
29
- "@types/minimist": "^1.2.2",
30
32
  "@types/node": "^14.14.21"
31
33
  },
32
34
  "volta": {
@@ -1,362 +0,0 @@
1
- ## Ignore Visual Studio temporary files, build results, and
2
- ## files generated by popular Visual Studio add-ons.
3
- ##
4
- ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5
-
6
- # User-specific files
7
- *.rsuser
8
- *.suo
9
- *.user
10
- *.userosscache
11
- *.sln.docstates
12
-
13
- # User-specific files (MonoDevelop/Xamarin Studio)
14
- *.userprefs
15
-
16
- # Mono auto generated files
17
- mono_crash.*
18
-
19
- # Build results
20
- [Dd]ebug/
21
- [Dd]ebugPublic/
22
- [Rr]elease/
23
- [Rr]eleases/
24
- x64/
25
- x86/
26
- [Ww][Ii][Nn]32/
27
- [Aa][Rr][Mm]/
28
- [Aa][Rr][Mm]64/
29
- bld/
30
- [Bb]in/
31
- [Oo]bj/
32
- [Ll]og/
33
- [Ll]ogs/
34
-
35
- # Visual Studio 2015/2017 cache/options directory
36
- .vs/
37
- # Uncomment if you have tasks that create the project's static files in wwwroot
38
- #wwwroot/
39
-
40
- # Visual Studio 2017 auto generated files
41
- Generated\ Files/
42
-
43
- # MSTest test Results
44
- [Tt]est[Rr]esult*/
45
- [Bb]uild[Ll]og.*
46
-
47
- # NUnit
48
- *.VisualState.xml
49
- TestResult.xml
50
- nunit-*.xml
51
-
52
- # Build Results of an ATL Project
53
- [Dd]ebugPS/
54
- [Rr]eleasePS/
55
- dlldata.c
56
-
57
- # Benchmark Results
58
- BenchmarkDotNet.Artifacts/
59
-
60
- # .NET Core
61
- project.lock.json
62
- project.fragment.lock.json
63
- artifacts/
64
-
65
- # ASP.NET Scaffolding
66
- ScaffoldingReadMe.txt
67
-
68
- # StyleCop
69
- StyleCopReport.xml
70
-
71
- # Files built by Visual Studio
72
- *_i.c
73
- *_p.c
74
- *_h.h
75
- *.ilk
76
- *.meta
77
- *.obj
78
- *.iobj
79
- *.pch
80
- *.pdb
81
- *.ipdb
82
- *.pgc
83
- *.pgd
84
- *.rsp
85
- *.sbr
86
- *.tlb
87
- *.tli
88
- *.tlh
89
- *.tmp
90
- *.tmp_proj
91
- *_wpftmp.csproj
92
- *.log
93
- *.vspscc
94
- *.vssscc
95
- .builds
96
- *.pidb
97
- *.svclog
98
- *.scc
99
-
100
- # Chutzpah Test files
101
- _Chutzpah*
102
-
103
- # Visual C++ cache files
104
- ipch/
105
- *.aps
106
- *.ncb
107
- *.opendb
108
- *.opensdf
109
- *.sdf
110
- *.cachefile
111
- *.VC.db
112
- *.VC.VC.opendb
113
-
114
- # Visual Studio profiler
115
- *.psess
116
- *.vsp
117
- *.vspx
118
- *.sap
119
-
120
- # Visual Studio Trace Files
121
- *.e2e
122
-
123
- # TFS 2012 Local Workspace
124
- $tf/
125
-
126
- # Guidance Automation Toolkit
127
- *.gpState
128
-
129
- # ReSharper is a .NET coding add-in
130
- _ReSharper*/
131
- *.[Rr]e[Ss]harper
132
- *.DotSettings.user
133
-
134
- # TeamCity is a build add-in
135
- _TeamCity*
136
-
137
- # DotCover is a Code Coverage Tool
138
- *.dotCover
139
-
140
- # AxoCover is a Code Coverage Tool
141
- .axoCover/*
142
- !.axoCover/settings.json
143
-
144
- # Coverlet is a free, cross platform Code Coverage Tool
145
- coverage*[.json, .xml, .info]
146
-
147
- # Visual Studio code coverage results
148
- *.coverage
149
- *.coveragexml
150
-
151
- # NCrunch
152
- _NCrunch_*
153
- .*crunch*.local.xml
154
- nCrunchTemp_*
155
-
156
- # MightyMoose
157
- *.mm.*
158
- AutoTest.Net/
159
-
160
- # Web workbench (sass)
161
- .sass-cache/
162
-
163
- # Installshield output folder
164
- [Ee]xpress/
165
-
166
- # DocProject is a documentation generator add-in
167
- DocProject/buildhelp/
168
- DocProject/Help/*.HxT
169
- DocProject/Help/*.HxC
170
- DocProject/Help/*.hhc
171
- DocProject/Help/*.hhk
172
- DocProject/Help/*.hhp
173
- DocProject/Help/Html2
174
- DocProject/Help/html
175
-
176
- # Click-Once directory
177
- publish/
178
-
179
- # Publish Web Output
180
- *.[Pp]ublish.xml
181
- *.azurePubxml
182
- # Note: Comment the next line if you want to checkin your web deploy settings,
183
- # but database connection strings (with potential passwords) will be unencrypted
184
- *.pubxml
185
- *.publishproj
186
-
187
- # Microsoft Azure Web App publish settings. Comment the next line if you want to
188
- # checkin your Azure Web App publish settings, but sensitive information contained
189
- # in these scripts will be unencrypted
190
- PublishScripts/
191
-
192
- # NuGet Packages
193
- *.nupkg
194
- # NuGet Symbol Packages
195
- *.snupkg
196
- # The packages folder can be ignored because of Package Restore
197
- **/[Pp]ackages/*
198
- # except build/, which is used as an MSBuild target.
199
- !**/[Pp]ackages/build/
200
- # Uncomment if necessary however generally it will be regenerated when needed
201
- #!**/[Pp]ackages/repositories.config
202
- # NuGet v3's project.json files produces more ignorable files
203
- *.nuget.props
204
- *.nuget.targets
205
-
206
- # Microsoft Azure Build Output
207
- csx/
208
- *.build.csdef
209
-
210
- # Microsoft Azure Emulator
211
- ecf/
212
- rcf/
213
-
214
- # Windows Store app package directories and files
215
- AppPackages/
216
- BundleArtifacts/
217
- Package.StoreAssociation.xml
218
- _pkginfo.txt
219
- *.appx
220
- *.appxbundle
221
- *.appxupload
222
-
223
- # Visual Studio cache files
224
- # files ending in .cache can be ignored
225
- *.[Cc]ache
226
- # but keep track of directories ending in .cache
227
- !?*.[Cc]ache/
228
-
229
- # Others
230
- ClientBin/
231
- ~$*
232
- *~
233
- *.dbmdl
234
- *.dbproj.schemaview
235
- *.jfm
236
- *.pfx
237
- *.publishsettings
238
- orleans.codegen.cs
239
-
240
- # Including strong name files can present a security risk
241
- # (https://github.com/github/gitignore/pull/2483#issue-259490424)
242
- #*.snk
243
-
244
- # Since there are multiple workflows, uncomment next line to ignore bower_components
245
- # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
246
- #bower_components/
247
-
248
- # RIA/Silverlight projects
249
- Generated_Code/
250
-
251
- # Backup & report files from converting an old project file
252
- # to a newer Visual Studio version. Backup files are not needed,
253
- # because we have git ;-)
254
- _UpgradeReport_Files/
255
- Backup*/
256
- UpgradeLog*.XML
257
- UpgradeLog*.htm
258
- ServiceFabricBackup/
259
- *.rptproj.bak
260
-
261
- # SQL Server files
262
- *.mdf
263
- *.ldf
264
- *.ndf
265
-
266
- # Business Intelligence projects
267
- *.rdl.data
268
- *.bim.layout
269
- *.bim_*.settings
270
- *.rptproj.rsuser
271
- *- [Bb]ackup.rdl
272
- *- [Bb]ackup ([0-9]).rdl
273
- *- [Bb]ackup ([0-9][0-9]).rdl
274
-
275
- # Microsoft Fakes
276
- FakesAssemblies/
277
-
278
- # GhostDoc plugin setting file
279
- *.GhostDoc.xml
280
-
281
- # Node.js Tools for Visual Studio
282
- .ntvs_analysis.dat
283
- node_modules/
284
-
285
- # Visual Studio 6 build log
286
- *.plg
287
-
288
- # Visual Studio 6 workspace options file
289
- *.opt
290
-
291
- # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
292
- *.vbw
293
-
294
- # Visual Studio LightSwitch build output
295
- **/*.HTMLClient/GeneratedArtifacts
296
- **/*.DesktopClient/GeneratedArtifacts
297
- **/*.DesktopClient/ModelManifest.xml
298
- **/*.Server/GeneratedArtifacts
299
- **/*.Server/ModelManifest.xml
300
- _Pvt_Extensions
301
-
302
- # Paket dependency manager
303
- .paket/paket.exe
304
- paket-files/
305
-
306
- # FAKE - F# Make
307
- .fake/
308
-
309
- # CodeRush personal settings
310
- .cr/personal
311
-
312
- # Python Tools for Visual Studio (PTVS)
313
- __pycache__/
314
- *.pyc
315
-
316
- # Cake - Uncomment if you are using it
317
- # tools/**
318
- # !tools/packages.config
319
-
320
- # Tabs Studio
321
- *.tss
322
-
323
- # Telerik's JustMock configuration file
324
- *.jmconfig
325
-
326
- # BizTalk build output
327
- *.btp.cs
328
- *.btm.cs
329
- *.odx.cs
330
- *.xsd.cs
331
-
332
- # OpenCover UI analysis results
333
- OpenCover/
334
-
335
- # Azure Stream Analytics local run output
336
- ASALocalRun/
337
-
338
- # MSBuild Binary and Structured Log
339
- *.binlog
340
-
341
- # NVidia Nsight GPU debugger configuration file
342
- *.nvuser
343
-
344
- # MFractors (Xamarin productivity tool) working folder
345
- .mfractor/
346
-
347
- # Local History for Visual Studio
348
- .localhistory/
349
-
350
- # BeatPulse healthcheck temp database
351
- healthchecksdb
352
-
353
- # Backup folder for Package Reference Convert tool in Visual Studio 2017
354
- MigrationBackup/
355
-
356
- # Ionide (cross platform F# VS Code tools) working folder
357
- .ionide/
358
-
359
- # Fody - auto-generated XML schema
360
- FodyWeavers.xsd
361
-
362
- node_modules
@@ -1,43 +0,0 @@
1
- # Logs
2
- logs
3
- *.log
4
- npm-debug.log*
5
-
6
- # Runtime data
7
- pids
8
- *.pid
9
- *.seed
10
-
11
- # Directory for instrumented libs generated by jscoverage/JSCover
12
- lib-cov
13
-
14
- # Coverage directory used by tools like istanbul
15
- coverage
16
-
17
- # nyc test coverage
18
- .nyc_output
19
-
20
- # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
21
- .grunt
22
-
23
- # node-waf configuration
24
- .lock-wscript
25
-
26
- # Compiled binary addons (http://nodejs.org/api/addons.html)
27
- build/Release
28
-
29
- # Dependency directories
30
- node_modules
31
- jspm_packages
32
-
33
- # Optional npm cache directory
34
- .npm
35
-
36
- # Optional REPL history
37
- .node_repl_history
38
-
39
- # VSCode
40
- .vscode
41
-
42
- # lib folder
43
- lib/